I need to assign LookupEditRepositoryItem to GridViewColumn and keep open its' DropDown open while user types text. During typing, I need to query database and fill LookupEdit's DataSource with returned dataset. Unfortunately LookupEdit does not allow DropDown to be in open state while typing?
May be there is workaround? any special event for that?
Thanks for your time.
Starting with version 19.2, LookUpEdit supports the
AutoSuggestmode - when a user types in text, the editor fires theAutoSuggestevent that runs a custom asynchronous task. This task performs a search against the given data set, and returns theICollectionobject with records that match the entered text.