I'm trying to use the RadGrid GridCheckboxColumn for the first time and the checkboxes are inert - they don't work.
I copied this pretty much verbatum from one of the online examples. I searched this forum without success of finding another case like this. Does anybody have a clue as to why the checkboxes don't work (won't check)?
Thanks,
Mark
| <telerik:RadGrid ID="radGrid1" runat="server" Skin="Forest" AllowFilteringByColumn="True" AllowPaging="True" |
| AllowSorting="True" |
| AutoGenerateColumns="False" |
| DataSourceID="ObjectDataSource1" |
| GridLines="None" |
| ShowGroupPanel="True"> |
| <MasterTableView AllowMultiColumnSorting="True" |
| AutoGenerateColumns="False" |
| DataSourceID="ObjectDataSource1" |
| ShowFooter="True"> |
| <RowIndicatorColumn> |
| <HeaderStyle Width="20px"></HeaderStyle> |
| </RowIndicatorColumn> |
| <ExpandCollapseColumn> |
| <HeaderStyle Width="20px"></HeaderStyle> |
| </ExpandCollapseColumn> |
| <Columns> |
| <telerik:GridCheckBoxColumn UniqueName="chkCol" |
| HeaderText="<center>Get<br/>Details</center>" |
| AllowFiltering="false" |
| AllowSorting="false" |
| Groupable="false"> |
| <HeaderStyle Width="40px" ForeColor="#193300" Font-Bold="true" /> |
| </telerik:GridCheckBoxColumn> |
| </Columns> |
| etc.... |
I copied this pretty much verbatum from one of the online examples. I searched this forum without success of finding another case like this. Does anybody have a clue as to why the checkboxes don't work (won't check)?
Thanks,
Mark