我想要一个具有这种结构的BorderContainer:
我有这段代码,但它不起作用。底部的高度不起作用,所以我不知道如何解决它。
this.bc = new BorderContainer({
style: "height: 100%; width: 100%;",
design:'sidebar',
gutters:true,
liveSplitters:true,
});
this.cp1 = new ContentPane({
region: "leading",
style: "width: 50%;height : 50%;",
content: '<div style="width:100%;height:100%"></div>',
splitter:true
});
this.bc.addChild(this.cp1);
this.cp2 = new ContentPane({
region: "center",
style: "width: 50%;height : 50%;",
content: '<div style="width:100%;height:100%"></div>',
splitter:true
});
this.bc.addChild(this.cp2);
this.cp3 = new ContentPane({
region : "bottom",
style: "height : 50%",
content: '<div style="width:100%;height:100%"></div>',
splitter:true
});
this.bc.addChild(this.cp3);
dijit.byId("containerPane").addChild(this.bc, 0);
this.bc.startup();
this.bc.resize();
答案 0 :(得分:2)
我不确定你的意思是底部的高度不起作用,你能更具体吗?这是一个工作的jsfiddle也许这会有帮助吗? http://jsfiddle.net/edchat/1cr6hsfa/
由于分割器和填充占用空间,因此大小不能使用50%,因此您没有空间让两个contentPanes使用50%。
我认为你不想设计:'sidebar'
design:'sidebar',