This is a migrated thread and some comments may be shown as answers.

checkbox in grid

1 Answer 77 Views
Grid
This is a migrated thread and some comments may be shown as answers.
ying
Top achievements
Rank 1
ying asked on 25 Jun 2011, 05:48 AM
I have an dropdownlist put above of the grid
inside the grid i have checkbox "GridClientSelectColumn", i want to hide the "GridClientSelectColumn", but, when i choose something in dropdown list
the "GridClientSelectColumn' must appear...is it have any possible way to do

1 Answer, 1 is accepted

Sort by
0
Jayesh Goyani
Top achievements
Rank 2
answered on 25 Jun 2011, 06:06 AM
Hi,

<telerik:GridClientSelectColumn UniqueName="ClientSelectColumn"/>
if()
    RadGrid1.MasterTableView.Columns.FindByUniqueName("ClientSelectColumn").Visible = true;
else
    RadGrid1.MasterTableView.Columns.FindByUniqueName("ClientSelectColumn").Visible = false;


Thanks,
Jayesh Goyani
Tags
Grid
Asked by
ying
Top achievements
Rank 1
Answers by
Jayesh Goyani
Top achievements
Rank 2
Share this question
or