Can anyone help me with a small problem?
I am using the tooltip_min script provided by Benjith Sam on screens where I have search or tag dropdowns that have very large texts, so that when I mouse over the text appears complete in the tooltip.
However, when using this script, the tooltip also appears in the clear icon field and this is not expected,
I need the clear feature, but I don't need the tooltip in the icon, as shown in the examples below
Does anyone know how I can remove the tooltip only from the clear icon (remember - I don't want to remove the resource to clear the field)
If you can't remove the tooltip, you might be able to change the text, since the whole project is in another language.
Hi Cris,
You can try changing the data-tooltip value using this script on DropdownTagsInitialized
OutSystems.OSUI.Patterns.DropdownAPI.SetProviderConfigs(
$parameters.WidgetId, Providers.OSUI.Dropdown.VirtualSelect.Utils.NormalizeVirtualSelectConfigs(
{
clearButtonText: "Test"
}
));
This will change the data-tooltip property in the HTML
You can take a look in this documentation to allow more customization for the virtual select.
You can also use SetVirtualSelectConfigs, but in some cases it doesn't offer all the properties available.
Please let me know if this helped you.
REgards
Kharlo
Hi Kharlo Ridado, Thank you for this help. Although it did not solve my original question, it contributed to a solution that was approved by the client.
It works very well.