Hi ,
Is there a way for creating a deep copy of a RadGrid.
I have a RadGrid that is set at design time , so in the run time I want to create a deep copy of the Grid
so I can change the columns, operate with the values etc. so at the end the originally grid is not changed.
It is nice if this some how works automatically , because I have over 100 Grids, its not wise to make separate code for every Grid.
Example:
it should work something like this :
RadGrid rgCopy = new RadGrid();
rgCopy = createCopy(rgOriginal);
Is this possible ?
Regards