I have a form containing three (3) RadComboBoxes. When an item is selected from the first combobox the other two are updated and the focus is supposed to be set on the second combobox. The problem is that the focus is not be set to the second combobox after it has been rebound. What is wrong here?
Protected Sub radCombo1_SelectedIndexChanged(ByVal o As Object, ByVal e As Telerik.Web.UI.RadComboBoxSelectedIndexChangedEventArgs) Handles radCombo1.SelectedIndexChanged |
BindCombo2() |
If radCombo3.Text.Length = 0 Then |
BindCombo3() |
End If |
radAjaxManager.FocusControl(radCombo2.ClientID & "_Text") |
End Sub |