2017-06-13 156 views
0

我有一个嵌套面板的窗口。面板包含几个字段。 窗口调整大小事件后面板的字段布局错误。ExtJs。调整大小的字段布局

var panel = new Ext.panel.Panel({ 
     layout: { 
      type: 'vbox', 
      align: 'stretch' 
     }, 
     items: [{ 
      xtype: 'textfield', 
      fieldLabel: 'One Two Three Four Five Six Seven', 
      labelAlign: 'top', 
      width: '100%' 
     },{ 
      xtype: 'textfield', 
      fieldLabel: 'One Two Three Four Five Six Seven', 
      labelAlign: 'top', 
      width: '100%' 
     }] 
    }) 

    var window = new Ext.Window({ 
     layout: 'anchor', 
     title: 'Hello resizer', 
     resizable: true, 
     draggable: true, 
     scrollable: 'vertical', 
     items: [panel], 
     width: 400, 
     height: 200, 
    }); 

的方式重现:
1.进入这个fiddle
2.调整窗口的大小,因此文本框的那个标签不适合一行。 (在这里你会看到定位问题)

enter image description here

有没有办法正确显示避免UpdateLayout请领域,改变布局类型?

回答