I am working on extJS grid column and I can resize my grid column. But I want my column won't be resize below the actual width. It mean I can not resize the width to left side.
How can I get this.
What I am trying here is ,
columnresize : function(ct,column,width,eOpts){
var actualColumn = this.myXmlDoc.getElementsByTagName('column');
var actualSize = actualColumn.width;
if(actualSize > width){
column.resizable = false;
}
}
But in this case column is resizing and then no option for resizable.
I just want it won't resize below the actual length.
Thanks in advance.