Selection dialogue

Vix

Member
What do you mean exactly? What would you like to search for?
I want to search string value of array list in the selection dialog due to large list sometime difficult to find selection in the dialog. The string value is not ordered alphabetically so it is difficult to go to the selection option.
 

Dm114

Well-known member
I want to search string value of array list in the selection dialog due to large list sometime difficult to find selection in the dialog. The string value is not ordered alphabetically so it is difficult to go to the selection option.
Ok I see now.

I'm facing the same problem and I use this workaround. In such cases, instead of using an array is use a dictionary as it is sorted in the keys order. The keys must not be same as the text (value) displayed by Selection Dialog. It can just be keys to reflect the sort order you want.
 
Top