23
Views
6
Comments
Solved
[OutSystems UI] Dropdownsearch translation for "Clear"
outsystems-ui
Reactive icon
Forge asset by OutSystems

For a DropdownSearch is there a similiar way to translate this "Clear" popup text

as well at this is possible for this text?

2026-01-28 16-57-48
Mihai Melencu
Champion
Solution

Hi Martin,

You can use the following JS snippet in the OnInitialize of the dropdown search:

  • const configuration = {
  •   "clearButtonText": "Your_Text"
  • }
  • OutSystems.OSUI.Patterns.DropdownAPI.SetProviderConfigs(
  •     $parameters.WidgetId,
  •    configuration
  • );


2023-07-25 08-10-27
Martin Henning
Champion

Thx Mihai, that works fine for me.

2022-11-12 11-28-30
Gonçalo Martins
Staff
Solution

Hi @Martin Henning 

Adding this property to the extensibility actions is already planned for the next version, v2.28.0, so you'll get it soon. This will allow you to use the translation capabilities from the Platform.

Meanwhile, can you share a sample oml with your example so we can test and guarantee that the use case is covered?

Thank you

Cheers,
GM

2026-01-28 16-57-48
Mihai Melencu
Champion
Solution

Hi Martin,

You can use the following JS snippet in the OnInitialize of the dropdown search:

  • const configuration = {
  •   "clearButtonText": "Your_Text"
  • }
  • OutSystems.OSUI.Patterns.DropdownAPI.SetProviderConfigs(
  •     $parameters.WidgetId,
  •    configuration
  • );


2023-07-25 08-10-27
Martin Henning
Champion

Thx Mihai, that works fine for me.

2025-12-03 17-22-41
Lavanya Kamalaguru

Hi @Martin Henning ,

For the optional configuration text, you may refer to the format shown in the screenshot below. 

2022-11-12 11-28-30
Gonçalo Martins
Staff

Hi @Martin Henning 

Thanks for reaching out. Could you please share an oml with your use case so we can help?
I imagine you're adding that balloon yourself, right?

Cheers,
GM

2023-07-25 08-10-27
Martin Henning
Champion

The balloon is part of the standard  OutSystems DropdownSearch-Widget.

2022-11-12 11-28-30
Gonçalo Martins
Staff
Solution

Hi @Martin Henning 

Adding this property to the extensibility actions is already planned for the next version, v2.28.0, so you'll get it soon. This will allow you to use the translation capabilities from the Platform.

Meanwhile, can you share a sample oml with your example so we can test and guarantee that the use case is covered?

Thank you

Cheers,
GM

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.