我正在尝试使用BorderContainer并使用其区域样式调用几个ContentPanes。但是,我遇到的代码问题如下:
function getWindowContent(graphic) {
var bc = new dijit.layout.BorderContainer({
style: "width:600px;height:600px;background-color:lightblue;"
}, dojo.create("div"));
//display attribute information1
var german = new dijit.layout.ContentPane({
region: "leading",
content: "<p>Hallo Welt!</p><p>info</p><p>info</p><p>info</p>"
}, dojo.create("div"));
//display attribute information2
var french = new dijit.layout.ContentPane({
region: "center",
content: "<p>Bonjour tout le monde!</p><p>info</p><p>info</p><p>info</p>"
}, dojo.create("div"));
//display attribute information3
var english = new dijit.layout.ContentPane({
region: "trailing",
content: "<p>Hello World!</p><p>info</p><p>info</p><p>info</p>"
}, dojo.create("div"));
bc.startup();
bc.addChild(german);
bc.addChild(french);
bc.addChild(english);
return bc.domNode;
}
正确出现的唯一孩子是“英语”,而“德语”的孩子根本没有出现,而“法语”的孩子则被严重压缩。有没有人有关于如何解决这个问题的想法?