Height Percentage Scroll Problems
I arranged my grid to be 100% height. The grid shows initially correctly, including the data, but when I scroll it doesnt render data correctly. It shows half of the rows or just stays blank.
Original percent style:
If I change the height to px I works fine:
My code:
Any ideas???
Original percent style:
#grid1 {width: 100%; height:100%}
If I change the height to px I works fine:
#grid1 {width: 100%; height:400px}
My code:
var table = new AW.XML.Table;
table.setURL(xxxxxx);
table.request();
var obj = new AW.Grid.Extended;
obj.setId("grid1");
obj.setColumnCount(10);
var columns1 = ["Id", "Nombre", "Apellido", ........];
obj.setHeaderText(columns1);
obj.setFixedLeft(3);
obj.setSelectorVisible(true);
obj.setSelectorWidth(25);
obj.setSelectorText(function(i){return this.getRowPosition(i)+1});
obj.setCellModel(table);
obj.setSelectionMode("single-row");
document.write(obj);
Any ideas???
Ruso Wyler
April 25,