Hi!
I have developed asp.net with telerik components for about 1,5 years now.
I have found out that if I create radgrid on aspx that meets the following requirements, the clientSelectColumn starts to misbehave:
* allow paging = false
* allow scrolling on grids clientSettings
* add some columns, including telerik:GridClientSelectColumn
* on client side: window.onresize = resize(); <- resize the grid to fit the page on "onload" and "onresize".
f.ex:
* on "OnNeedDataSource" event, load so much data that you have to scroll the page to reach bottom.
* scroll down and select a line by clicking on clientselectcolumn checkbox.
-> with every click the pages contains are moving upwards and off from the web browsers window.
I got the same results with IE 9 and Firefox 11 (not so much offset, but it jumped a few times though).
If i set the grids height to be a static value this problem doesn't show up.
I have developed asp.net with telerik components for about 1,5 years now.
I have found out that if I create radgrid on aspx that meets the following requirements, the clientSelectColumn starts to misbehave:
* allow paging = false
* allow scrolling on grids clientSettings
* add some columns, including telerik:GridClientSelectColumn
* on client side: window.onresize = resize(); <- resize the grid to fit the page on "onload" and "onresize".
f.ex:
function resize() { if (grid) { var w = document.documentElement.clientWidth; var h = document.documentElement.clientHeight -100; grid.get_element().style.height = h + "px"; grid.repaint(); }}* on "OnNeedDataSource" event, load so much data that you have to scroll the page to reach bottom.
* scroll down and select a line by clicking on clientselectcolumn checkbox.
-> with every click the pages contains are moving upwards and off from the web browsers window.
I got the same results with IE 9 and Firefox 11 (not so much offset, but it jumped a few times though).
If i set the grids height to be a static value this problem doesn't show up.