Hello,
We replaced the native listbox with the UltraListView (with list mode - single column)
We were using FindString method that's available in the native listbox to select the first matching item. I couldn't find the similar method in UltraListView.
Is there a similar method to programatically find the matching item based on some partial string?
Thanks
hi,
please refer the property UltraListView.AutoKeyboardSearch.
regards,
sheeba
Thanks for the quick response.
Setting the above property will allow user type in the text to find the matching item.
But I need to find the matching item programatically based on some partial text. The native control FindText method was allowing that.
You can submit a feature request for this if you like; in the meantime, you can probably implement this by simply iterating the Items collection and comparing the value of the MainColumn.Text for each item yourself.