Selector resize bug
Hi Alex,
There seems to be a bug when using setSelectorResizable with 2.5.1
In the following code, if you comment out the line with setSelectorResizable, you will be able to resize the columns in FireFox, IE and Opera.
However, if the line is not commented out, trying to resize the columns gives an error (FireFox gives the error "this[get] has no properties")
There seems to be a bug when using setSelectorResizable with 2.5.1
In the following code, if you comment out the line with setSelectorResizable, you will be able to resize the columns in FireFox, IE and Opera.
However, if the line is not commented out, trying to resize the columns gives an error (FireFox gives the error "this[get] has no properties")
<html>
<head>
<script src="runtime/lib/aw.js"></script>
<link href="runtime/styles/xp/aw.css" rel="stylesheet"></link>
</head>
<body>
<script>
var obj = new AW.Grid.Extended;
obj.setCellText(function(i, j){return j + "." + i});
obj.setHeaderText("header");
obj.setColumnCount(10);
obj.setRowCount(100);
obj.setCellEditable(false);
obj.setSelectorVisible(true);
obj.setSelectorWidth(30);
obj.setSelectorResizable(true);
document.write(obj);
</script>
</body>
</html>
Ankur Motreja
February 3,