grid resize columns

hi,



i have a grid in a layout cell with 3 columns. i have set the sizes as 200,*,200



this scenario doesnt resize the columns. is this a bug or is there a way i can get around it so that the users can resize the columns



thanks



richard

With such init, you will not be able to resize central column - it will always take all available size.
You can switch auto-size column to normal behavior by

grid.load(url,function(){
grid.setSizes()
grid.initCellWidth[1]=grid.getColWidth(1);
});

With such init, you will not be able to resize central column - it will always take all available size.
You can switch auto-size column to normal behavior by

grid.load(url,function(){
grid.setSizes()
grid.initCellWidth[1]=grid.getColWidth(1);
});

With such init, you will not be able to resize central column - it will always take all available size.
You can switch auto-size column to normal behavior by

grid.load(url,function(){
grid.setSizes()
grid.initCellWidth[1]=grid.getColWidth(1);
});