繁体   English   中英

在Ext js 4.0中调整网格大小时如何调用函数?

[英]How to call a function on when a grid is resized in Ext js 4.0?

在Ext js 4.0中调整网格大小时如何调用函数?

我正在尝试类似的方法,但是它没有用。

Ext.define('App.view.EDM.DataModelling.Entity.entitySymbol' ,{
extend: 'Ext.grid.Panel', 
alias   : 'widget.entitySymbol',
title:'Entity',
ddGroup : 'GridDDGroup',
hideHeaders : true,
stripeRows : false,
resizable : {
    resize : function(e ) {
        alert("hi1");
    },
    resizedrag : function(e ) {
        alert("hi2");
    },
    beforeresize : function(e ) {
        alert("hi3");
    }

    },  
floating:true,
draggable : true,   
loadMask : true,
height: 180,
width: 160

});

这些都不起作用。

您应该添加一个监听器以调整事件大小

...
stripeRows : false,
listeners:{
  resize: function(this, width, height, oldWidth, oldHeight, eOpts){
     alert("hi4");
  }
},
...

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM