Hi Team
The last column of my grid is a GridClientSelectColumn. I am trying to set this amazing
iCheck jquery plugin to all checkboxes of the grid
How can i do this ? How can i access the checkboxes of the grid ?
I have already tried these options but without success....any idea ?
- $('.RadGrid input').iCheck();
- $('div.RadGrid input[type="checkbox"]').iCheck();
- $('input[type="checkbox"]').iCheck();
- $('input').iCheck({
checkboxClass: 'icheckbox_square',
increaseArea: '20%' // optional
});
<telerik:GridClientSelectColumn UniqueName="shop" HeaderText="Buy" >
<HeaderStyle HorizontalAlign="Center" />
<ItemStyle HorizontalAlign="Center" />
</telerik:GridClientSelectColumn>