sorting bug
It seems that the third column in this example is not sorting. This is the 2.0 release.
var obj = new AW.UI.Grid;
var data = [
[1,"1",1],
[2,"1",1],
[3,"2",2]
];
obj.setCellData(data);
obj.setRowCount(3);
obj.setColumnCount(3);
document.write(obj);
Seems to happen with numeric columns in which there are duplicate values.
var obj = new AW.UI.Grid;
var data = [
[1,"1",1],
[2,"1",1],
[3,"2",2]
];
obj.setCellData(data);
obj.setRowCount(3);
obj.setColumnCount(3);
document.write(obj);
Seems to happen with numeric columns in which there are duplicate values.
DT
July 7,