Hi Dojo,
When using Interactive Automation Scripts with Dropdown components: UIBlockType overview | DataMiner Docs
I was wondering if this would support a native filter option in the UI to narrow down this dropdown list for the user?
Hey Thijs
There's a property that can be set when initializing an Dropdown widget to enable filtering the dropdown:
DropDown MyDropdown = new DropDown()
{
IsDisplayFilterShown = true,
};
I drink rocket fuel for breakfast 😉
FYI, I created a small example script to showcase this functionality: https://github.com/SkylineCommunications/SLC-AS-Example_InteractiveAutomationScriptToolkit/tree/main/IAS_DropDownFilter_1
damn you are fast…!!