I would like to add two radcombobox in the RadGrid to do the Edit and Add function, when I click the first radcomobox, the second radcomobox will bind other data depend on the first radcomobox input value. I attempt to try
Protected Sub RadComboBox1_SelectedIndexChanged(ByVal o As Object, ByVal e As Telerik.Web.UI.RadComboBoxSelectedIndexChangedEventArgs) Handles RadComboBox1.SelectedIndexChanged
Me.RadComboBox2.DataSource = "SqlDataSource3"
Me.RadComboBox2.DataBind()
End Sub
But nothing happen when the system after autopost
How can I do?
Protected Sub RadComboBox1_SelectedIndexChanged(ByVal o As Object, ByVal e As Telerik.Web.UI.RadComboBoxSelectedIndexChangedEventArgs) Handles RadComboBox1.SelectedIndexChanged
Me.RadComboBox2.DataSource = "SqlDataSource3"
Me.RadComboBox2.DataBind()
End Sub
But nothing happen when the system after autopost
How can I do?