Primefaces调整大小以获得组件宽度

时间:2016-09-09 16:01:06

标签: jsf primefaces

我在我的项目中使用PrimeFaces 5.1。在我的第一页到用户设计页面,即添加按钮按下,用于创建一个p:dataGrid行,到p:selectOneButton选择第二列是否存在标签或文本框此信息基于我的第二个创建组件以下代码中的页面我使用创建模板,但我怀疑文本或标签给用户选择宽度所以如果任何其他三角形组件调整大小选项是可用的并且调整其可能的大小我需要调整大小并获得宽度可以通过其他方式传递服务器的信息吗?

<p:dataGird value=#{employee.templateList} columns="1" rowIndexVar="rowIndex">
    <h:panelGrid columns="2">
        <h:panelGroup>
            <p:selectOneButton value="#{selectOneView.option}">
                <f:selectItem itemLabel="TextBox" itemValue="TextBox" />
                <f:selectItem itemLabel="Label" itemValue="Label" />
            </p:selectOneButton>
        </h:panelGroup>
        <h:panelGroup>....</h:panelGroup>
    </h:panelGrid>
</p:dataGrid>

0 个答案:

没有答案