2012-04-03 3 views

답변

3

는 시도 추가 '크기 조정'이벤트

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

참조
관련 문제