how to get the checkbox object
my code is:
var grid = new AW.UI.Grid;
grid.setId("div1");
grid.setCellData(function(col, row){return "cell " + col + "." + row});
grid.setColumnCount(5);
grid.setRowCount(20);
grid.setSelectionMode("multi-row-marker"); // set selection mode to single row
grid.refresh();
i want to get the checkbox object and set it readonly.
help me!
var grid = new AW.UI.Grid;
grid.setId("div1");
grid.setCellData(function(col, row){return "cell " + col + "." + row});
grid.setColumnCount(5);
grid.setRowCount(20);
grid.setSelectionMode("multi-row-marker"); // set selection mode to single row
grid.refresh();
i want to get the checkbox object and set it readonly.
help me!
lprince
September 5,