Skip to main content

Posts

Showing posts from 2015

Cascading DropDownLists Inside Telerik RadGrid

protected void RadComboBox1_SelectedIndexChanged(object sender, Telerik.Web.UI.RadComboBoxSelectedIndexChangedEventArgs e)         {             // Get the Country DropDownList first.             RadComboBox ddlBranch = (RadComboBox)sender;             // Get the current GridView Row, from which the DropDownList is selected.             GridEditableItem currentRow = (GridEditableItem)ddlBranch.NamingContainer;             // Now let's find the City DropDownList on the same GridView Row.             DropDownList ddlCity = (DropDownList)currentRow.FindControl("ddlAgent");        ...