This question is locked. New answers and comments are not allowed.
Hi,
I have grid view dynamic columns - adding columns to grid at run time & providing values to columns in rowloaded event of telerik grid.
column adding
for (int k = 0; k < columns.Count; k++)
{
GridViewDataColumn column1 = new GridViewDataColumn();
column1.Header = columns[k];
column1.UniqueName = columns[k];
grvDataValues.Columns.Add(column1);
}
In rowloaded event, i am assigning content to all cells in row.
Whenever i tried to edit these dynamically added column cells but after edit those get blank as those cell does not have any property assign. Is there in event such that i can attach content to cell after edit?
Thanks & Regards,
Saurabh
I have grid view dynamic columns - adding columns to grid at run time & providing values to columns in rowloaded event of telerik grid.
column adding
for (int k = 0; k < columns.Count; k++)
{
GridViewDataColumn column1 = new GridViewDataColumn();
column1.Header = columns[k];
column1.UniqueName = columns[k];
grvDataValues.Columns.Add(column1);
}
In rowloaded event, i am assigning content to all cells in row.
Whenever i tried to edit these dynamically added column cells but after edit those get blank as those cell does not have any property assign. Is there in event such that i can attach content to cell after edit?
Thanks & Regards,
Saurabh