Where handler to resize column event in TreeGrid (extjs)?
Where handler to resize co开发者_如何学Pythonlumn event in TreeGrid (extjs)?
Can you explain your question a bit more? I'm guessing your looking for something like this:
var tg = new Ext.ux.TreeGrid({
//set config properties....
});
tg.on('columnresize', function(colIndex, newSize){
//doSomething.....
}, this);
As of EXTJS 4, the columnresize event has different callbacks FYI:
http://docs.sencha.com/ext-js/4-0/#!/api/Ext.grid.Panel-event-columnresize
精彩评论