0

我遇到了这段代码的问题。我想要一个 SelectOneMenu 来选择一个客户(这个对我来说很好用)。但是在我选择了一个元素之后,我应该会在 OutputText 中看到这个客户的 ID。这不起作用:

<h:form id="form">
  <h:panelGrid columns="2">
    <h:outputLabel for="customer" value="Customer: " />
    <h:selectOneMenu id="customerList"
    value="#{customerController.selected}" required="true">
      <f:selectItems value="#{customerController.items}"
      var="customer"
      itemLabel="#{customer.id} #{customer.firstname} #{customer.lastname} #{customer.email}"
      itemValue="customer" />
      <p:ajax update=":form:myId" />
    </h:selectOneMenu>
    <h:outputLabel value="Customer ID: " for="myId" />
    <h:outputText id="myId"
    value="#{customerController.selected.id}" />
  </h:panelGrid>
</h:form>

有任何想法吗?

4

1 回答 1

0

尝试使用:

<p:ajax update="myId" />
于 2013-05-21T23:26:09.733 回答