Primefaces
我在选项卡中创建了一些程序化组件。
<h:form>
<p:tabView id="documentDetailsTabs" dynamic="true" cache="true" >
<p:tab id="contenutoTab" title="#{msg['content']}" >
<p:panelGrid columns="4" style="width:100%"
styleClass="table-4col-noborder"
binding="#{documentContentController.propertiesGridComponentModify}"
columnClasses="label-col-4col, value-col-4col,label-col-4col, value- col4col">
</p:panelGrid>
<p:commandButton value="Save"
styleClass="buttonStyle"
process="@form"
action="#{documentContentController.checkInAction}"
/>
</p:tab>
</p:tabView>
</h:form>
表单数据未设置在组件的支持 bean 中。如果我将p:panelGrid
组件移出p:tabView
代码工作。
我正在使用 Primefaces 3.2 和 JSF 2.1。你能帮我吗?