I have a grid that has the following column definition:
I want to add a client side click handler to the DHCP CheckBox column. Inside the handler I want to be able enable/disable all of the other GridBoundColumns based on whether or not the CheckBox is checked or not.
So a couple of questions:
| <telerik:GridCheckBoxColumn DataField="Dhcp" HeaderText="DHCP"></telerik:GridCheckBoxColumn> |
| <telerik:GridBoundColumn DataField="Address" HeaderText="Address"></telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="Mask" HeaderText="Mask" ></telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="Gateway" HeaderText="Gateway" ></telerik:GridBoundColumn> |
I want to add a client side click handler to the DHCP CheckBox column. Inside the handler I want to be able enable/disable all of the other GridBoundColumns based on whether or not the CheckBox is checked or not.
So a couple of questions:
- How do you add a client side event handler to the GridCheckBoxColumn
- How do you access the edit controls of the GridBoundColumns in that event handler.
Thanks,
Steve