我如何在听众extjs 4上获得窗口的宽度和高度?

时间:2012-04-03 13:24:34

标签: extjs extjs4

当我调整窗口大小然后提醒宽度和高度然后再次调整我的窗口再次提醒宽度和高度,请如何请求帮助。在extjs4

new Ext.Window({
     title:'my window',
     id:'mywindow',
     listeners:{
          alert("need width and height");
     }
}).show();

请帮帮我。 提前谢谢。

1 个答案:

答案 0 :(得分:3)

尝试在窗口上添加'resize'事件

Ext.create('Ext.window.Window', {
    title  : 'Hello',
    height : 200,
    width  : 400,
    layout : 'fit',
    listeners : {
                'resize' : function(win,width,height,opt){
                   console.log(width);
                   console.log(height);
                 }
    }
}).show();

参考Ext.window.Window-event-resize