I am using RadComboBox with filtering. I have to implement multiple word filter in a combo box. (i.e. if user enters "test string", it should matches all items containing words "test" and "string" in any order).
I don't believe you will be able to achieve this using the built-in Filter property, but you should be able to achieve this using LoadOnDemand and then handling the ItemsRequested event.