gpt4 book ai didi

javascript - BorderContainer dojo,顶部有 2 个 ContentPane,底部有 1 个 ContentPane

转载 作者:行者123 更新时间:2023-12-02 16:33:32 24 4
gpt4 key购买 nike

我想要一个具有以下结构的 BorderContainer:

enter image description here

我有这个代码,但它不起作用。底部的高度不起作用,所以我不知道如何修复它。

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

最佳答案

我不确定你所说的底部高度不起作用是什么意思,你能更具体一些吗?这是一个有效的 jsfiddle 也许这会有所帮助? http://jsfiddle.net/edchat/1cr6hsfa/

尺寸无法使用 50%,因为拆分器和填充占用了空间,因此您没有空间让两个 contentPanes 都使用 50%。

我认为你不想设计:'sidebar'

design:'sidebar', 

关于javascript - BorderContainer dojo,顶部有 2 个 ContentPane,底部有 1 个 ContentPane,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28108693/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com