outputLabel的滚动条

时间:2014-02-23 13:50:12

标签: css jsf primefaces

我想为outputLabel创建一个滚动条但是如果我使用滚动条组件,它会将每个列表元素放在一个新行中。整个输出应该在一行中显示,列表应该是可滚动的。我能用CSS属性解决这个问题吗?

我使用primefaces 4.0和jsf 2.1

这是我的代码

    <p:commandButton id="newMessage" update=":contentForm"
                actionListener="#{taskboxBean.newMessage}" value="New Message" />
            <p:commandButton id="trash"
                update=":contentForm, :postForm:tabViewPosts:trashTable, :postForm:tabViewPosts:inboxTable, :postForm:tabViewPosts:sentTable"
                actionListener="#{taskboxBean.deleteSelectedTaskbox}" icon="ui-icon-trash" title="Trash" />

            <p:scrollPanel>
                <ui:repeat var="task_to_user" value="#{taskboxBean.selectedTaskbox.TASKBOX_TO_USERS}">
                    <p:outputLabel
                        value="#{task_to_user.USER.EMAIL}  #{task_to_user.USER.FIRST_NAME} #{task_to_user.USER.LAST_NAME} #{task_to_user.USER.FIRST_NAME}" />
                </ui:repeat>
            </p:scrollPanel>

            <h:outputText value="#{taskboxBean.selectedTaskbox.TASKTYPE.NAME} " />
            <h:outputText value="#{taskboxBean.selectedTaskbox.CREATE_TIMESTAMP} " />

0 个答案:

没有答案