我想在我的Alfresco页面上使用dojo库,所以我决定使用dojo布局。我决定在dojo布局中包装所有页面。我使用'region:top'作为页面的标题部分,但查看弹出窗口时出现问题,因为dojo top layout的样式为“position:absolute”,而Alfresco弹出窗口也有。
我可以为标题部分设置样式“position:static”并且可以,但我认为这不是我的方式。
<@templateBody>
<div id="fullPage" class="claro" data-dojo-type="dijit/layout/LayoutContainer">
<div id="alf-hd" data-dojo-type="dijit.layout.ContentPane" data-dojo-props="region: 'top'">
<@region id="header" scope="global"/>
<@region id="title" scope="page"/>
</div>
<div id="bd" class="claro" data-dojo-type="dijit.layout.ContentPane" data-dojo-props="region: 'center'">
<@region id="column" scope="page"/>
</div>
</div>
</@>
答案 0 :(得分:0)
说实话,我没有深入研究Alfresco,但是你能不能设置你的dojo标题和露天弹出窗口的z-index属性,以便它们正确叠加?
或者我错过了这一点?!