I have a webcombo with ComboTypeAhead="Extended" and Editable="true". The SelectedRowChanged event have a method associated too.
The problem is when i put the cursor in webcombo and start type, the SelectedRowChanged event is fired after press the first key. I want the method fires after the user press enter or click outside the combo.
Example:
I have 3 companies in the webcombo: COM1, COM2, COM3.
After press letter C, the webcombo selects the first company (COM1) and fires the SelectedRowChanged, causing a postback. I can't select COM2 or COM3 using the keyboard.
Thanks in advance