Here is the delema. I have 2 GridTemplateColumns. Each Conatin a Checkbox. this is also located in a DetailTable
| <telerik:GridTemplateColumn HeaderText="Suppress"> |
| <ItemTemplate> |
| <asp:CheckBox ID="cbSuppress3" runat="server" /> |
| </ItemTemplate> |
| </telerik:GridTemplateColumn> |
| <telerik:GridTemplateColumn HeaderText="Approve"> |
| <ItemTemplate> |
| <asp:CheckBox ID="cbApprove3" runat="server" /> |
| </ItemTemplate> |
| </telerik:GridTemplateColumn> |
I when one box is checked I need to make sure the other is not, if it is I need to uncheck it . This will be true for each row. I would like to do this on the client side to prevent a trip to the server. Any Ideas?
Thanks