RadGrid for ASP.NET AJAX

RadControls for ASP.NET AJAX

There is no default event for editor changes in grid columns - it is up to the developer to attach events to these editors when necessary. This operation can be performed hooking the ItemCreated event of Telerik RadGrid. For example - in case with GridDropDownColumn you have to:

  1. Check whether the currently created grid item is GridDataItem and is in edit mode
  2. Locate the dropdown list editor in the Controls collection of the cell which corresponds to the GridDropDownList column
  3. Mark it with AutoPostBack = true and wire a handler to its SelectedIndexChanged event. Then in the SelectedIndexChanged handler you can update the selected value for the second dropdown.