在将小部件添加为子级时,窗口小部件dijit/layout/ContentPane
无法正确调整大小。
重现问题的步骤:
问题:
dijit/layout/ContentPane
不会调整大小。
插入的内容不完全可见。我需要增加dijit/layout/ContentPane
的维度,以便容纳新添加的小部件,以便所有内部小部件都可见。
我认为这是dijit小部件中的一个错误。我想知道一个解决方法,如果有的话。
注意: 我已经向dojo https://bugs.dojotoolkit.org/ticket/19021
报告了错误require(["dijit/layout/ContentPane", "dijit/TitlePane", "dijit/form/Button", "dojo/domReady!"], function(ContentPane, TitlePane, Button) {
this._contentPanel = new ContentPane({
style: "background-color:red;"
}, "contentPanel");
this._titlePanel = new TitlePane({
title: "I'm a TitlePane",
content: "Collapse me!"
}, "titlePanel");
this._button = new Button({
label: "Click me many times!",
onClick: function() {
this._titlePanel.addChild(new Button({
label: "Test",
style: "width: 250px"
}));
}.bind(this)
}, "button");
this._contentPanel.addChild(this._titlePanel);
this._titlePanel.addChild(this._button);
this._contentPanel.startup();
});
答案 0 :(得分:2)
我认为您希望将ContentPane的doLayout
标志设置为false。然后它不会在嵌套的ContentPane上设置大小。另外,删除硬编码的125px高度。
答案 1 :(得分:0)