Hello sir,
Collapsing and enlarging group is not working in Rad Grid. I am calling RefreshCombos() function given in demo site from Rad grid PreRender event. But is working before filtering controls is calling but not working once after the items is filtered. I dont know what is the proble.. So plz help me to find the solution.
I am using the following code in order to work filtering properly:
protected void RadGrid1_PreRender(object sender, EventArgs e)
{
if ((RadGrid1.MasterTableView.FilterExpression != string.Empty ))
{
RefreshCombos();
}
}
Regards,
Appu