当我调整窗口大小然后提醒宽度和高度然后再次调整我的窗口再次提醒宽度和高度,请如何请求帮助。在extjs4
new Ext.Window({
title:'my window',
id:'mywindow',
listeners:{
alert("need width and height");
}
}).show();
请帮帮我。 提前谢谢。
答案 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();