G
Guest
I have a datagrid that I want to move another part of the page. I'm able to
do this but the datagrid looses it's values after the move.
General_DataGrid_CurrentItems is the datagrid name.
I want to move it to a tablecell called tdControls.
this.Controls.Remove(General_DataGrid_CurrentItems);
tdControls.Controls.Add(General_DataGrid_CurrentItems);
This works. It moves the datagrid from the bottom of the page to the middle
where my table cell is. Problem is, it looses the values in the datagrid.
do this but the datagrid looses it's values after the move.
General_DataGrid_CurrentItems is the datagrid name.
I want to move it to a tablecell called tdControls.
this.Controls.Remove(General_DataGrid_CurrentItems);
tdControls.Controls.Add(General_DataGrid_CurrentItems);
This works. It moves the datagrid from the bottom of the page to the middle
where my table cell is. Problem is, it looses the values in the datagrid.