How to unfreeze a column that shouldn't be frozen
I have the following code that creates a grid:
I don't ever tell column 0 (leftmost column) to be fixed/frozen, but it is (in both ie and ff), and I tried listGrid.clearFixedModel(); but that does not unfix it.
I need this not to be fixed. I don't even know why it is being fixed in the first place.
var listGrid = new AW.Grid.Extended;
listGrid.setHeaderIndices([0,1]);
listGrid.setHeaderCount(2); //make room for filters
listGrid.setCellEditable = false;
listGrid.setCellText(listData); //data array
listGrid.setHeaderText(headerRow,0); //header array
listGrid.setHeaderTooltip(headerRow,0);
listGrid.setColumnCount(headerRow.length);
listGrid.setRowCount(listData.length);
listGrid.setId("listGrid");
listGrid.clearFixedModel(); //tried this, doesn't stop col-0 from being fixed
document.write(listGrid);
I don't ever tell column 0 (leftmost column) to be fixed/frozen, but it is (in both ie and ff), and I tried listGrid.clearFixedModel(); but that does not unfix it.
I need this not to be fixed. I don't even know why it is being fixed in the first place.
John
February 23,