Hi,
I have a RadGrid with a templatecolumn which I create programmatically.
After performing an action in the grid (like sort or filtering) the content of the templatecolumn is empty.
Do I have to rebind the templatecolumn again after such an action?
Paul
I have a RadGrid with a templatecolumn which I create programmatically.
GridTemplateColumn templateColumn =
new
GridTemplateColumn();
RadGrid1.MasterTableView.Columns.Add(templateColumn);
templateColumn.ItemTemplate =
new
WorkflowStatusTemplate();
After performing an action in the grid (like sort or filtering) the content of the templatecolumn is empty.
Do I have to rebind the templatecolumn again after such an action?
Paul