Hi,
I have added a RAD Grid in my page. I am executing a query and preparing a data table and assigning that to the rad grid, The data is populating in the grid perfectly. I do not want to show few columns to the user but i actually want to use those values.
for hiding the first column i used the following code
I have added a RAD Grid in my page. I am executing a query and preparing a data table and assigning that to the rad grid, The data is populating in the grid perfectly. I do not want to show few columns to the user but i actually want to use those values.
for hiding the first column i used the following code
RadGrid1.Columns[1].Display =
false; But showed me an error.
Then i tried with the following code
RadGrid1.MasterTableView.RenderColumns[1].Display =
false;
This did not show me an error but did not hide the column
Guide me how to go about this.
Jidesh