We currently experience a bug on the browser when you click on the dropdown search while the data is being fetched and loaded, the widgets gets frozen with the results and it requires the page to be reloaded.
We tried adding the is data fetched property from the entity to the widget's disabled property but we can still replicate the issue the moment it is enabled (if you click fast enough).
Below is an example of when a country is selected the dropdown results are still displayed.
Hi @Kevin Du Pont.
For future reference on the release notes, you can search for the task code ROU-4360.We'll try to include this in the next release 2.16.0.
Cheers,GM
Hi @Kevin Du Pont,
That's indeed an issue at the library we're using (VirtualSelect).
It's happening when the options list complete the load which ends into a ParametersChange that will redraw the Dropdown and if you open it before the load has been complete, it will ends on not close anymore.
You can workaround it through the options below:
1. try to use DropdownServerSide, since you will be able to take all the advantages of implement all the logic at your side;
2. If you really need to use the DropdownSearch as you've already, you just need to use the DropdownDisable client action at the DropdownSearch OnInitialized event, and once your data has been loaded (dataFetched) you can use the DropdownEnable client action, this way, you ensure there is no interaction with the Dropdown before data has been totally loaded.
Nevertheless, we have this "issue" under our radar already and we'll try to find a definitely solution for it!
Hope it helps,
PS: Do not forget to close the Post if you consider it answered.
Cheers,JR