5 Answers, 1 is accepted

I installed Q2 ajax and the combobox still does not validate.
<telerik:RadScriptManager ID="RadScriptManager1" runat="server">
</telerik:RadScriptManager>
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td colspan="3">
<telerik:RadComboBox ID="cmbSkins" runat="server">
</telerik:RadComboBox>
</td>
</tr>
I populate it in codebehind and set autopostback to true:
With cmbSkins
.AutoPostBack = True
cmb.LoadSkinCombo(cmbSkins)
End With
this event never fires, but I do step through the autopostback...
Protected Sub cmbSkins_SelectedIndexChanged(ByVal o As Object, ByVal e As Telerik.Web.UI.RadComboBoxSelectedIndexChangedEventArgs) Handles cmbSkins.SelectedIndexChanged
SkinClass.ChangeSkin(CInt(cmbSkins.SelectedValue))
End Sub
Please see our online example where everything works as expected. I suggest you review it and find the differences at your side.
Regards,
Rosi
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.

Please add the onselectedindexchanged="cmbSkins_SelectedIndexChanged" event in RadComboBox in order to fire the SelectedIndexChanged event.
<telerik:RadComboBox ID="RadComboBox1" Runat="server" |
AutoPostBack="True" |
onselectedindexchanged="cmbSkins_SelectedIndexChanged" </telerik:RadComboBox> |
Thanks,
Shinu

Protected Sub cmbSkins_SelectedIndexChanged(ByVal o As Object, ByVal e As Telerik.Web.UI.RadComboBoxSelectedIndexChangedEventArgs) Handles cmbSkins.SelectedIndexChanged
This combo box works when on a page by itself, but when added to a form, it no longer works. I will create a project and hopefully be able to submit it.

thanks.
(hangs head in shame).
;(