次の例では、200pxの高さのコンテナの間にTitlePaneを作成しました。TitlePaneの高さを100%に設定しましたが、拡大していないようです。
関連コード:
var titlePane = new TitlePane({
title: "TITLE",
toggleable: false,
style: "height: 100%; overflow-y: auto",
content: "foo"
});
var outerPane = new ContentPane({
content: titlePane,
style: "height: 200px;"
}, dojo.byId("body2"));
完全な例:
何か案が?