Resizing of a flexible column

I am using a flexible column width (*) in my grid. I am finding that I am unable to resize this column afterward. If I try to increase or decrease the size of the column, it snaps back in place. Is there a way to allow a flexible column to resize? If no, is there another way of implementing similar functionality to flexible column that will allow later resizing of that column?



Thanks

The next code will change behavior, so flexible column become a normal one, after resize operation.

mygrid.attachEvent(“onResize”,function(ind){
if (this.initCellWidth[ind]=="*") this.initCellWidth[ind]=100;
return true;
})

Thanks for the quick reply. When is the next version coming out?