Hey guys. I have a problem entering a new item in my combo box. If the combobox is close and I start entering a letter, that letter is highlighted and the grid drops down. Because of this, a user might have a problem when they want to enter a new record, the will end up typing a word and be missing the first letter. Keep in mind that if the combo box is already open, the letters will go in normally with the usual autoCompleteMode.
Hello Legasy,
Thank you for posting your question to the Infragistics WinGrid Forums. I created the attached sample using your information from above and was unable to reproduce the described issue.
Please take a look at this sample and let me know if this issue persists.
Sincerely,Mike D.Developer Support EngineerInfragistics, Inc.
Sorry for the long wait.
I realised there is something is. There is a TextChanged eventHandler for the UltraCombo. It goes like this
static void ddl_EnterAndTextChanged(object sender, EventArgs e)
{
UltraCombo ddl = (UltraCombo)sender;
ddl.PerformAction(UltraComboAction.Dropdown);
}
Should this cause it to highlight the first character when the UltraCombo has been dropdowned?