Hi All
I have a series of comboboxes on the page, each updates depending on what is selected in the previous one. If my users select a value, then hit Enter, the next combo updates and focus moves to the next combo as expected. However the tab key doesn't do that at all. Instead hitting the tab key causes the next combo to update, but focus changes to someplace outside the browser, like up in the address bar. Here's the code I'm using in my onSelectedIndexChanged event handlers behind the combo boxes:
protected void radddlTechnician_id_SelectedIndexChanged(object o, RadComboBoxSelectedIndexChangedEventArgs e) |
{ |
RadAjaxManager1.FocusControl(this.radddlProvider_id.ClientID + "_Input"); |
} . |
I've assigned a TabIndex property to each control as well - while that helps with the order of focusing, it didn't help with this problem.
I'm using Q3 .1314 with Ajaxmanager and .Net 3.5
Any thoughts?
Thanks
Mark