如何在ExtJS中为Container添加边框

时间:2013-04-08 07:49:28

标签: extjs extjs3

我的容器如下所示。我想为此容器添加边框,如文本框边框,请帮助为Container添加边框。

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

1 个答案:

答案 0 :(得分:6)

如果您不能在配置中设置 border:true ,请尝试以下操作:

 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);
    }
});