p:ajax监听器无法正常使用p:selectOneMenu

时间:2017-03-03 05:10:18

标签: java ajax primefaces

我正在使用JSF和PrimeFaces。 在尝试使用PrimeFaces组件时:selectOneMenu我发现了一些问题。

<h:form>
    <p:panel header="Select an offer and the date for the report" style="margin-bottom: 10px">
        <h:panelGrid columns="2" cellpadding="5px">
            <p:outputLabel for="offer" value="Offer: "/>
            <p:selectOneMenu id="offer" value="#{partnerSales.selectedOffer}" style="width: 200px;">
                <p:ajax event="change" update="year" listener="#{partnerSales.onOfferChange}"/>
                <f:selectItem itemLabel="Select an offer: " noSelectionOption="true" itemValue=""/>
                <f:selectItems value="#{partnerSales.allOffers}"/>
            </p:selectOneMenu>

            <p:outputLabel for="year" value="Year: "/>
            <p:selectOneMenu id="year" value="#{partnerSales.selectedYear}" style="width: 200px">
                <p:ajax update="month"/>
                <f:selectItem itemLabel="Select a year: " itemValue="" noSelectionOption="true"/>
                <f:selectItems value="#{partnerSales.years}"/>
            </p:selectOneMenu>

            <p:outputLabel for="month" value="Month: "/>
            <p:selectOneMenu id="month" value="#{partnerSales.selectedMonth}" style="width: 200px">
                <f:selectItem itemLabel="Select a month: " itemValue="" noSelectionOption="true"/>
                <f:selectItems value="#{partnerSales.months}"/>
            </p:selectOneMenu> 
        </h:panelGrid>

        <p:separator/>

        <p:commandButton value="Send" actionListener="#{partnerSales.displayData}"/>
    </p:panel>
</h:form>

所以,我有一个selectOneMenu组件,它有几个选项。默认情况下,第一项是&#34;选择要约:&#34;具有空值并且不用于选择。而且,我使用监听器来捕获值以更新下一个组件。但是,当我试图改变价值时,没有任何事情发生。但是当我从下拉菜单中选择第一个项目时,监听器会打印出它被访问过的内容。哪里出错了?我无法理解这种奇怪的行为)

1 个答案:

答案 0 :(得分:0)

感谢@lastresort!当我使用SelectOneMenu组件作为值时,我添加了自定义对象。

要在此类组件中使用自定义对象,您需要添加custom converter