2013-04-08 29 views
3

我有Container,如下所示。我想爲此容器添加邊框,如文本框邊框,請幫助爲容器添加邊框。如何在ExtJS中爲Container添加邊框

MyContainer13Ui = Ext.extend(Ext.Container, { 
    flex: 1, 
    width: 500, 
    height: 22, 
    activeItem: 0, 
    id: 'url', 
    initComponent: function() { 
     MyContainer13Ui.superclass.initComponent.call(this); 
    } 
}); 
+2

你嘗試的風格配置:'風格:「邊界:1px的黑色solid'' – cclerville 2013-04-08 08:00:12

+0

無論是通過#url {border:...}還是通過使用style屬性,您都將使用CSS。 – 2013-04-09 21:21:14

+0

您可以使用Panel而不是容器。 – 2013-04-27 22:01:52

回答

6

如果你不能只是設置邊界:真在配置上,試試這個:

MyContainer13Ui = Ext.extend(Ext.Container, { 
    flex: 1, 
    width: 500, 
    height: 22, 
    border: 1, 
    style: { 
     borderColor: 'black', 
     borderStyle: 'solid' 
    }, 
    activeItem: 0, 
    id: 'url', 
    initComponent: function() { 
     MyContainer13Ui.superclass.initComponent.call(this); 
    } 
});