Is it possible to maintain Checkbox state while paging in RadGrid Client Side?
I have a RadGrid with the following column:
I can easily maintain CheckBox state while paging Server Side but I noticed that is very slow and it would cripple what I'm trying to do considering that I have to use the CheckedChanged event of the Checkbox and add AutoPostBack="true" which would create a partial/postback, is there anyway I can maintain what Checkboxes were Checked in Client Side and then access those values from server?
I basically want to do something similar to this tutorial
http://www.telerik.com/help/aspnet/grid/gridpersistcheckboxstateingridtemplatecolumnonrebind.html
but in client side.
Thank you.
I have a RadGrid with the following column:
<telerik:GridTemplateColumn UniqueName="CheckRows" HeaderStyle-Width="42px" > <HeaderTemplate> <asp:CheckBox ID="chkSelectAll" runat="server" /> </HeaderTemplate> <ItemTemplate> <asp:CheckBox ID="chkRowSelect" runat="server" /> </ItemTemplate></telerik:GridTemplateColumn>I can easily maintain CheckBox state while paging Server Side but I noticed that is very slow and it would cripple what I'm trying to do considering that I have to use the CheckedChanged event of the Checkbox and add AutoPostBack="true" which would create a partial/postback, is there anyway I can maintain what Checkboxes were Checked in Client Side and then access those values from server?
I basically want to do something similar to this tutorial
http://www.telerik.com/help/aspnet/grid/gridpersistcheckboxstateingridtemplatecolumnonrebind.html
but in client side.
Thank you.
