我一直在挖掘档案以找到可能有帮助的答案,但似乎没有什么真正适用的。
我在 jsf 中有一个包含嵌套数据表的页面,其中包含来自支持 bean 的列表。该页面似乎没有任何问题地保存数据,但是当我尝试使用 p:collector Primefaces 对象添加我的任一数据表时,我的数据表只显示一行。我总是在两个列表中添加一个空对象。
列表中包含的对象是实现 Serializable 的自定义对象。
我的 backing bean 是 ConversationScoped,backing bean 中的数据在对话开始时被实例化。
这是我的主页:
<ui:composition template="/templates/pageLayout.xhtml">
<ui:define name="pageContent">
<h:form id="genericWorkflowMainForm" enctype="multipart/form-data">
<p:panel id="actionList">
<div align="right">
<p:commandButton id="addActionButton" value="Add Action" update="actionTable"
action="#{createGenericWorkflowBean.addAction}" ajax="false">
<p:collector id="addActionCollector" value="#{createGenericWorkflowBean.actionRow}"
addTo="#{createGenericWorkflowBean.genericWorkflowData.actionGroup.actionCompletionList}"/>
</p:commandButton>
</div>
<h:dataTable id="actionTable" var="actions"
value="#{createGenericWorkflowBean.genericWorkflowData.actionGroup.actionCompletionList}">
<h:column>
<h:outputLabel value="Action " />
<h:inputTextarea id="actionText" value="#{actions.actionRecord.actionText}" />
<br/>
<p:panel id ="actioneePanel">
<div align="right">
<p:commandButton id="addApproverButton" value="Add Approver" onclick="addApprover.show()"/>
</div>
<h:dataTable value="#{actions.actionRecord.actionees}" id="actioneeListValues" var="actioneeRecord">
<h:column>
<h:outputText id="actioneeLabel" value="Actionee " />
<h:outputText id="actionee" value="#{actioneeRecord.user.user.name}" />
<h:outputText id="actioneeCommentlabel" value="Comments " rendered="#{actioneeRecord.user.display}"/>
<h:inputTextarea id ="actioneeComment" value="#{actioneeRecord.userComment}" rendered="#{actioneeRecord.user.display}"/>
<br/>
<p:commandLink id="removeActionee" value="Remove" update="actioneeListValues" rendered="#{!actioneeRecord.user.display}">
<p:collector value="#{actioneeRecord}" removeFrom="#{actions.actionRecord.actionees}"/>
</p:commandLink>
</h:column>
</h:dataTable>
<p:dialog id="addApprover" header="Add Approver" widgetVar="addApprover" modal="false" closable="false"
resizable="false" width="250">
<div>
<p:autoComplete id="autoCompleteApprover" value="#{createGenericWorkflowBean.newApprover}"
/**//>
<br/>
<p:commandButton id="addNewApprover" title="Add Approver" value="Add"
update="actioneeListValues" onclick="addApprover.hide()" ajax="false"
action="#{createGenericWorkflowBean.addApprover()}">
<p:collector value="#{createGenericWorkflowBean.newApprover}"
addTo="#{actions.actionRecord.actionees}"/>
</p:commandButton>
</div>
</p:dialog>
</p:panel>
</h:column>
</h:dataTable>
</p:panel>
</h:form>
</ui:define>
</ui:composition>
以下是与 p:collector 添加和删除列表部分相关的支持 bean 的部分。
@Named
@ConversationScoped
public class CreateGenericWorkflowBean extends WorkflowBean {
@Inject
Conversation conversation;
private Actionee newApprover;
private ActionCompletionRecord actionRow = new ActionCompletionRecord();
private Actionee actioneeRow = new Actionee();
public GenericWorkflowData getGenericWorkflowData() {
return (GenericWorkflowData) getData();
}
public void addApprover() {
setNewApprover(new Actionee());
}
public void addAction() {
actionRow = new ActionCompletionRecord();
}
}
我还在学习 JSF 和 Primefaces,所以我不知道我是否做过一些永远不会奏效的事情。
任何帮助将不胜感激。
马特·泰瑟姆