3.2.0

Bug IE/FF in horizontal scroll on grid with huge data.

Hi,

When I load a huge grid, and I horizontally scroll from the middle of the horizontal scrollbar to the end (at the right), the grid is frozen (no data is refresh). Before the middle, all is ok.

<script type="text/javascript">
var myHeaders = [ "656 cells", ... ];
var myData = [ ["656 rows of 512 cells"], ... ];
var obj = new AW.Grid.Extended;
obj.setColumnCount(656);
obj.setRowCount(512);

obj.setId("myGrid");
obj.setCellText(myData);
obj.setHeaderText(myHeaders);
document.write(obj);
</script>

Thanks for your help.
JL2008
August 6,
By default the scroll width is limited to 32000px, which is 320 columns 100px each. To increase the scroll width add the following css -

<style>

.aw-grid-view {
    width: 32000in;
}

.aw-view-top,
.aw-view-bottom {
    width: 32000in;
}

.aw-grid-headers,
.aw-grid-footers,
.aw-grid-row {
    width: 32000in;
}

</style>


With this modification the grid can have more than 1000 columns.
Alex (ActiveWidgets)
August 6,
Thanks for your quick and efficace response.
JL2008
August 6,

This topic is archived.

See also:


Back to support forum