Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
110
UltraComboEditor
posted

In an UltraComboEditor control I am using, the list object has (amongst other fields) two string fields, Name and Shortname. At the moment, I have the following set up:

DropDownStyle = DropDownStyle.DropDown

AutoCompleteMode = AutoCompleteMode.SuggestAppend

DisplayMember = "Shortname"

ValueMember = BindableValueList.USE_LISTOBJECT_AS_VALUEMEMBER;

What I would like to do is adjust the control so to add recognition by Name as well as Shortname. So if I have a list object that has Name = "Christopher D Bozzuto" and Shortname = "CDB", if I type Christopher into the editor, CDB should be in the dropdown. Is there a property where I can change the way it compares the text to the list object? Or a way to add multiple fields? Or is there any way to do this at all?

Parents Reply Children