Categories | Question details Back To List | ||
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 Answer posted by Support on Oct 02, 2008 01:31 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; }) Answer posted on Oct 02, 2008 05:07 Thanks for the quick reply. When is the next version coming out? |