Sirisha Peyyeti
Top achievements
Rank 1
Sirisha Peyyeti
asked on 25 Mar 2011, 07:04 AM
4 Answers, 1 is accepted
0
Princy
Top achievements
Rank 2
answered on 25 Mar 2011, 07:53 AM
Hello Sirisha,
Try the following code snippet to hide/show columns in RadGrid.
ASPX:
C#:
Thanks,
Princy.
Try the following code snippet to hide/show columns in RadGrid.
ASPX:
<
telerik:GridBoundColumn
DataField
=
"EmployeeID"
UniqueName
=
"EmployeeID"
>
</
telerik:GridBoundColumn
>
C#:
(RadGrid1.MasterTableView.GetColumn(
"FirstName"
)
as
GridBoundColumn).Display =
false
;
//hide GridBoundColumn
(RadGrid1.MasterTableView.GetColumn(
"FirstName"
)
as
GridBoundColumn).Display =
true
;
//show GridBoundColumn
Thanks,
Princy.
0
Kranthi
Top achievements
Rank 1
answered on 06 Jul 2012, 05:25 PM
Hey can u tell me how to retrieve the hidden column value
my requirement is to retrive the values of those whose checkboxes are check under a button click event in radgrid.. pls help me out
my requirement is to retrive the values of those whose checkboxes are check under a button click event in radgrid.. pls help me out
0
0
Freeman
Top achievements
Rank 1
answered on 15 Aug 2017, 09:33 PM
. This really helped me.