Hi, I have a scenario where dropdown items are not cleared in XamMultiColumnComboEditor when there is random text in the combo box.
Steps to reproduce :
How can I fix this? I want the situation to be like, if the search text dont match any of the items in the itemsSource, then on opening the dropdown, the Items count should be 0.
The situation is very well reproducible in the the below link.
www.infragistics.com/.../XamMultiColumnComboEditor.zip
Thanks and Regards,
Kaushik.
Hello Kaushik,
Please see the modified sample I have attached that demonstrates how you can achieve this.
1565.XamMultiColumnComboEditor_modified.zip
Here, I subscribed to the XamMultiComboEditor's internal TextBox's TextChanged event. This allows us to manually filter the ItemSource with any custom logic.
With the current implementation I am using, when selecting multiple items, the text will clear out and not deselect any items. You should tweak the algorithm for filtering the data to meet all your specific needs.
If you need further assistance with this, please let me know.
Sincerely,Michael H.Software DeveloperInfragistics, Inc.www.infragistics.com/support
Yes, we can surely do this. But, instead of filtering manually, is there anyway we can raise the event that gets fired when we do step 1.