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.
Consider creation of a custom LookUpEdit as shown in the How to implement an editor with a dynamic autocomplete list example. It allows you to provide data dynamically based on a typed value.