I am working with the latest version of telerik and having issues with old GroupPanel code:
In the gridPrerender I am passing the following to a method:
PrepareGroupPanelTable((sender as RadGrid).GroupPanel.Controls[0].Controls[0] as GridTableRow);
Once it enters the PrepareGroupPanelTable the argument is null.
protected void PrepareGroupPanelTable(string id, GridTableRow row)
{
TableCell cell1 = row.Cells[0]; // row is null
}
row worked in the old version. Now is always passes as null.
How do I fix this?
In the gridPrerender I am passing the following to a method:
PrepareGroupPanelTable((sender as RadGrid).GroupPanel.Controls[0].Controls[0] as GridTableRow);
Once it enters the PrepareGroupPanelTable the argument is null.
protected void PrepareGroupPanelTable(string id, GridTableRow row)
{
TableCell cell1 = row.Cells[0]; // row is null
}
row worked in the old version. Now is always passes as null.
How do I fix this?