Hi,
I have a grid on my web design and set the grid's DataSource during NeedDataSource event by using following syntax:
I tried to hide the column after the grid's DataSource is set but having code break by using following syntax:
I have a grid on my web design and set the grid's DataSource during NeedDataSource event by using following syntax:
RadGrid1.MasterTableView.DataSource = myDataSet.Tables(
"a").DefaultView
I tried to hide the column after the grid's DataSource is set but having code break by using following syntax:
RadGrid1.Columns(0).Visible =
False
After that, I tried to debug it during runtime and found out that the grid having no column even though i have set its DataSource.
Anyway to solve this out?
Thanks in advance and apprciate for the answer.
Regards,
Lim