We bought the package of controls and enjoy your very use it!
In use Grid - are there a possibility to catch events of grid controls?
We have two GridDropDownColumn one of the city and other of the street - we want that on choice of the GridDropDown city the GridDropDown street, will be refresh by the selected city.
The question is how catch the event on server side GridDropDown events?
We tried to register to the event on Grid_itemDataBound event but apparently it's too late Because It did not register.
protected
void Grid_mdr_Midrasha_ItemDataBound(object sender, GridItemEventArgs e)
{
if (e.Item is GridEditableItem && e.Item.IsInEditMode)
{
RadComboBox list = (e.Item as GridEditableItem)["iCityId"].Controls[0] as RadComboBox;
list.MarkFirstMatch =
true;
list.SelectedIndexChanged +=
new RadComboBoxSelectedIndexChangedEventHandler(list_SelectedIndexChanged);
}
}