Hide row-number column
Is it possible to the hide the column populated with the row numbers?
Curtis
June 22,
function cells(col, row){
return col + "." + row;
}
function position(col, row){
return this.getRowPosition(row)+1;
}
var obj = new AW.UI.Grid;
obj.setCellData(cells);
obj.setCellData(position, 0); // first column
obj.setColumnCount(10);
obj.setRowCount(10);
document.write(obj);
This topic is archived.
ActiveWidgets is a javascript library for creating user interfaces. It offers excellent performance for complex screens while staying simple, compact and easy to learn. Deployed by thousands of commercial customers in more than 70 countries worldwide.
Copyright © ActiveWidgets 2021