Hi,
I guess there is a bug in setGridWidth function since even if you set shrink to false, it shrinks the columns' width.
I have a workaround. Replace this line (somewhere around line 455):
w = Math.round((IENum(nwidth)-IENum(testdata[2]))/IENum(testdata[0])*IENum(cw));
with this one:
w = shrink ? Math.round((IENum(nwidth) - IENum(testdata[2])) / IENum(testdata[0]) * IENum(cw)) : IENum(cw);
Maybe there is a better solution but this one works for me.
Gius
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top