2015-02-10 109 views

回答

1

最好的辦法是使用容器

這裏是例子:

var container = { 
xtype : 'container', 
layout : 'hbox', 
style : 'margin-bottom: 5px;', 
items : [ 
    { 
     xtype: 'label', 
    text: 'a Label', 
    }, 
    { 
     xtype : 'container', 
     width : 85, 
     items : { 
      xtype : "button", 
      text : "button", 
      width : 70    
     } 
    }  
]}; 

希望這項工作。

相關問題