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);
}
});
你嘗試的風格配置:'風格:「邊界:1px的黑色solid'' – cclerville 2013-04-08 08:00:12
無論是通過#url {border:...}還是通過使用style屬性,您都將使用CSS。 – 2013-04-09 21:21:14
您可以使用Panel而不是容器。 – 2013-04-27 22:01:52