Hello, I am using MultiColumnComboBox so for that i have to popup javascript alert and enable disable another MultiColumnComboBox depends on first ( on selectionindexchanged from server side).
Following is my code that i have done. but it doesn't work for me.
protected void multiColumCombobox1_SelectedIndexChanged(object sender, Telerik.Web.UI.RadMultiColumnComboBoxSelectedIndexChangedEventArgs e) { if (multiColumCombobox1.Value=="1") { ClientScript.RegisterStartupScript(this.GetType(), "alert", "alert('HI');", true); multiColumCombobox1.Enable = true;
} else { ClientScript.RegisterStartupScript(this.GetType(), "alert", "alert('Bye');", true); multiColumCombobox1.Enable = False;
} }
Regards,
Sarthkee
