Hi All --
I've implemented a solution very, very similar to this one:
http://demos.telerik.com/aspnet-ajax/grid/examples/programming/selectrowwithcheckbox/defaultcs.aspx
With a few exceptions, such as I removed the header Select All and the select/unselect command buttons. And I'm using client scrolling instead of paging, but I am still loading all (50 or so) records at once -- no virtual scrolling or anything.
This all works perfectly as advertised...Until... I move the scroll bar on the grid up or down (even just a little) -- and on my next postback (like clicking the checkbox), I've lost all the previously selected items and only the one I just selected remains selected.
I can select all the items that are in my current scroll window just fine, but the minute I move the scroll bar, they're gone on postback.
This doesn't happen if I remove the code below:
And let the grid grow.
Any suggestions?
Thanks
Troy
I've implemented a solution very, very similar to this one:
http://demos.telerik.com/aspnet-ajax/grid/examples/programming/selectrowwithcheckbox/defaultcs.aspx
With a few exceptions, such as I removed the header Select All and the select/unselect command buttons. And I'm using client scrolling instead of paging, but I am still loading all (50 or so) records at once -- no virtual scrolling or anything.
This all works perfectly as advertised...Until... I move the scroll bar on the grid up or down (even just a little) -- and on my next postback (like clicking the checkbox), I've lost all the previously selected items and only the one I just selected remains selected.
I can select all the items that are in my current scroll window just fine, but the minute I move the scroll bar, they're gone on postback.
This doesn't happen if I remove the code below:
<
ClientSettings>
<Scrolling AllowScroll="True" ScrollHeight="400px" UseStaticHeaders="true">
</ClientSettings>
And let the grid grow.
Any suggestions?
Thanks
Troy