initial row selections
hi,
the code below does result in a table with highlighted first row (no selection highlight is shown at all). What am I doing wrong?
thanks
the code below does result in a table with highlighted first row (no selection highlight is shown at all). What am I doing wrong?
<script>
var table = new AW.UI.Grid;
table.setRowCount(4);
table.setColumnCount(4);
table.setCellText( function(i,j) {return i+j} )
table.setSelectedRows([0]);
document.write(table);
</script>
thanks
Dmitry
January 4,