ApplicationLayout中的浮动工具栏?

时间:2013-01-22 19:23:22

标签: css xpages xpages-extlib

请参阅this question以了解我正在尝试做什么。唯一的例外是我正在使用ApplicationLayout,我想要PlaceBar下面的工具栏。有没有办法欺骗CSS显示PlaceBar下面的工具栏,然后在滚动时,将它保持在页面顶部?    或者,如何修复ApplicationLayout的顶部(即PlaceBar,TitleBar等),以便它们不滚动?

1 个答案:

答案 0 :(得分:4)

更新:扩展此想法以制作XSnippet。 Download it from here

要修复应用程序布局的顶部部分,例如地方栏,标题栏,您必须查看应用程序布局控件生成的HTML页面的CSS(Google Chrome具有Inspect Element的强大功能) 。它使用lotusTitleBarlotusPlaceBarlotusContent等类,您可以在自定义CSS中使用它来创建浮动工具栏。

所以,如果这是你的XPage,扩展名为lib的应用程序布局控件。

<?xml version="1.0" encoding="UTF-8"?>
<xp:view xmlns:xp="http://www.ibm.com/xsp/core" xmlns:xe="http://www.ibm.com/xsp/coreex">
    <xp:this.resources>
        <xp:styleSheet href="/cssAppLayoutFloatingMenu.css"></xp:styleSheet>
    </xp:this.resources>
    <xe:applicationLayout id="applicationLayout1">
        <xp:panel>
            Sample Text. 1
            <xp:br></xp:br>
            Sample Text. 2
            <xp:br></xp:br>
            Sample Text. 3
            <xp:br></xp:br>
            Sample Text. 4
        </xp:panel>
        <xe:this.configuration>
            <xe:oneuiApplication titleBarName="Sample Title" placeBarName="Sample Place">
                <xe:this.footerLinks>
                    <xe:basicContainerNode label="Container 1">
                        <xe:this.children>
                            <xe:basicLeafNode label="Link 1" href="/"></xe:basicLeafNode>
                            <xe:basicLeafNode label="Link 2" href="/"></xe:basicLeafNode>
                        </xe:this.children>
                    </xe:basicContainerNode>
                    <xe:basicContainerNode label="Container 2">
                        <xe:this.children>
                            <xe:basicLeafNode label="Link 1" href="/"></xe:basicLeafNode>
                            <xe:basicLeafNode label="Link 2" href="/"></xe:basicLeafNode>
                        </xe:this.children>
                    </xe:basicContainerNode>
                </xe:this.footerLinks>
                <xe:this.placeBarActions>
                    <xe:pageTreeNode label="Page 1"></xe:pageTreeNode>
                    <xe:pageTreeNode label="Page 2"></xe:pageTreeNode>
                </xe:this.placeBarActions>
            </xe:oneuiApplication>
        </xe:this.configuration>
    </xe:applicationLayout>
</xp:view>

您可以使用此CSS制作标题栏并放置栏浮动

.lotusTitleBar {
    /*Class for Title bar*/
    position: fixed;
    width: 100%;
    height: 45px;
    z-index: 100;
}
.lotusPlaceBar {
    /*Class for Place bar*/
    position: fixed;
    width: 100%;
    z-index: 100;
    top: 45px; /*Start after height of lotusTitleBar*/
    height: 35px;
}
.lotusContent {
    /*Class for Content*/
    position: relative;
    top: 80px; /*Height of lotusTitleBar + Height of lotusPlaceBar*/
}

注意:这是一个非常基本的示例,只有标题栏和地方栏。如果在应用程序布局中包含横幅或其他元素,则必须相应地进行修改。