jsf - 创建主从表和对话框,如何重复使用相同的对话框进行创建和编辑

标签 jsf primefaces dialog master-detail

我正在尝试创建一个对话框,用于创建对象和更新对象。因此,如果我碰巧点击“新建”按钮,我将看到一个包含要填充的空字段的对话框,或者如果我点击一个条目的编辑按钮,该条目的数据将显示在对话框中以供更新。

按照 5.2 版 primefaces 展示中的示例,我可以以只读 outputText 形式呈现数据,但是当我将其更改为 inputText 时,该字段仍然为空。以下代码是我所拥有的示例:

<h:form id="form">    
  <p:dataGrid id="guestList" var="guest" value="${guestList.guests}" columns="3" paginator="true" rows="20">
    <f:facet name="header">
      Guest List
    </f:facet>

    <p:panel>
      <h:outputText value="${guest.name}" />
      <br />
      <h:outputText value="${guest.street}" />
      <br />
      <h:outputText rendered="#{guest.street2.length() gt 0}"
        value="${guest.street2}" />
      <h:panelGroup rendered="#{guest.street2.length() gt 0}">
        <br />
      </h:panelGroup>
      <h:outputText value="${guest.city}, " />
      <h:outputText value="${guest.state} " />
      <h:outputText value="${guest.zipCode}" />
      <p:commandButton update="@form:newGuestDetail" oncomplete="PF('newGuestDialog').show()" icon="ui-icon-edit" styleClass="ui-btn-inline">
        <h:outputText styleClass="ui-icon ui-icon-edit" style="margin:0 auto;" />
        <f:setPropertyActionListener value="#{guest}" target="#{guestList.selectedGuest}" />
      </p:commandButton>
    </p:panel>
  </p:dataGrid>

  <p:dialog header="#{guestList.hasSelected() ? 'Edit Guest' : 'New Guest'}" widgetVar="newGuestDialog" modal="true" showEffect="fade" hideEffect="fade">
    <p:outputPanel id="newGuestDetail">
      <h:outputText value="'#{guestList.selectedGuest.name}'"/>
      <p:inputText id="guestName" value="#{guestList.hasSelected() ? '' : guestList.selectedGuest.name}" pt:placeholder="Name"/>
      <p:commandButton value="#{guestList.selectedGuest == null ? 'Create Guest' : 'Update Guest'}"/>
    </p:outputPanel>
  </p:dialog>
</h:form>

hasSelected() 方法判断选中的客人是否为空,如果不为空则返回真。单击 commandButton 时应设置 selectedGuest,以便可以通过对话框检索对象,但是,在 selectedGuest 的 get/set 中使用跟踪器,我没有看到使用上述代码片段调用的 setter。如果我删除 inputText,那么即使 hasSelected 仍然返回 false,因此“New Guest”在对话框的标题,outputText 填充了一个值。

我发现这篇很棒的帖子讨论了关于 Action 、 Action 监听器等的执行顺序,但我认为这不是我的问题:Differences between action and actionListener .

所以最终的问题是,当我只有一个 outputText 而有一个 inputText 时,为什么我的 setter 会被命令按钮调用,我从来没有在日志中看到它被调用?

我感谢任何人可以提供的时间和帮助。

最佳答案

即使我们解决了你的问题,这个构造

<p:inputText value="#{guestList.hasSelected() ? '' : guestList.selectedGuest.name}">

永远不会工作。它需要引用模型属性,而不是空字符串。

您最好只重复使用编辑表单并让创建按钮预先创建一个空实体。这会在 View 方面简化很多。如果实体有一个 @Id 属性,它会更容易,只有当它在数据库中持久存在时才会出现。

这是一个启动示例:

<h:form id="entitiesForm">
    <p:dataTable id="entitiesTable" value="#{bean.entities}" var="entity">
        <p:column>#{entity.foo}</p:column>
        <p:column>#{entity.bar}</p:column>
        <p:column>
            <p:commandButton id="edit" value="Edit" 
                process="@this" action="#{bean.edit(entity)}"
                update=":entityDialog" oncomplete="PF('entityDialog').show()" />
            <p:commandButton id="delete" value="Delete" 
                process="@this" action="#{bean.delete(entity)}"
                update=":entitiesForm:entitiesTable" />
        </p:column>
    </p:dataTable>
    <p:commandButton id="add" value="Add" 
        process="@this" action="#{bean.add}" 
        update=":entityDialog" oncomplete="PF('entityDialog').show()" />
</h:form>

<p:dialog id="entityDialog" widgetVar="entityDialog" 
    header="#{empty bean.entity.id ? 'New' : 'Edit'} entity">
    <h:form id="entityForm">
        <p:inputText id="foo" value="#{bean.entity.foo}" />
        <p:inputText id="bar" value="#{bean.entity.bar}" />
        <p:commandButton id="save" value="#{empty bean.entity.id ? 'Create' : 'Update'} entity" 
            process="@form" action="#{bean.save}"
            update=":entitiesForm:entitiesTable" oncomplete="PF('entityDialog').hide()" />
    </h:form>
</p:dialog>

使用这个@ViewScoped bean:

private List<Entity> entities; // +getter
private Entity entity; // +getter

@EJB
private EntityService entityService;

@PostConstruct
public void load() {
    entities = entityService.list();
    entity = null;
}

public void add() {
    entity = new Entity();
}

public void edit(Entity entity) {
    this.entity = entity;
}

public void save() {
    entityService.save(entity); // if (id==null) em.persist() else em.merge()
    load();
}

public void delete(Entity entity) {
    entityService.delete(entity); // em.remove(em.find(type, id))
    load();
}

另见:

关于jsf - 创建主从表和对话框,如何重复使用相同的对话框进行创建和编辑,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33062044/

相关文章:

java - JSF 应用程序中 CPU 使用率极高

java - Android 在显示 ProgressDialog 时出现错误

java - 按下对话框的按钮时打开另一个 Activity ?

java - JSF 导航使用 h :SelectOneMenu

java.lang.OutOfMemoryError : PermGen space 错误

jsf - 如何在数据表 primefaces 中获取新的过滤值

java - p :graphicImage streamContent nullpointer

Facebook 请求对话框不向收件人显示消息

css 边距不适用于 jsf

jsf - 如何启用/禁用 primefaces 命令按钮?