1

我有一个包含 4 个字段(2 个日期,2 个 selectOne)的表单。我的 Bean 是 SessionScoped。当我更改表单中的值并单击提交时,应用程序运行正常。但是当我想再次更改表单中的值时,什么也没有发生。没有改变也没有执行。

我的表格看起来像:

<ui:define name="sidebar">
    <p:panel header="Select Values">
        <h:form id="graphform">
            <p:growl id="msg" />
            <p:panelGrid columns="1">
                <h:outputLabel for="servervalue" value="Servervalue: " />
                <p:selectOneMenu value="#{graph.servervalue }" id="servervalue">
                    <f:selectItems value="#{formconst.SERVERVALUES}" />
                </p:selectOneMenu>
                <h:outputLabel for="startdate" value="Startdate: " />
                <p:calendar disabledWeekends="false" size="10" pattern="dd.MM.yyyy"
                    showOtherMonths="true" maxlength="10"
                    mindate="#{formconst.MINDATE }" maxdate="#{formconst.MAXDATE}"
                    showButtonPanel="true" navigator="true" readOnlyInputText="true"
                    id="startdate" value="#{graph.startdate }" showOn="button"
                    required="true" />
                <h:outputLabel for="enddate" value="Enddate: " />
                <p:calendar disabledWeekends="false" size="10" pattern="dd.MM.yyyy"
                    showOtherMonths="true" maxlength="10"
                    mindate="#{formconst.MINDATE }" maxdate="#{formconst.MAXDATE }"
                    showButtonPanel="true" navigator="true" readOnlyInputText="true"
                    id="enddate" value="#{graph.enddate }" showOn="button"
                    required="true" />
                <h:outputLabel for="filter" value="Filter: " />
                <p:selectOneMenu value="#{graph.filter }" id="filter">
                    <f:selectItems value="#{formconst.GENERALFILTER}" />
                </p:selectOneMenu>
            </p:panelGrid>
            <p:separator />
            <p:panelGrid columns="2">
                <p:commandButton value="Submit" update="@all"
                    action="#{ graph.updateChart }" />
                <p:commandButton value="Reset" update="@all"
                    action="#{ graph.resetChart }" />
            </p:panelGrid>
        </h:form>
    </p:panel>

</ui:define>
<ui:define name="content">
    <h:form id="linechart">
        <p:lineChart value="#{graph.cartesianChartBean.chartmodel }"
            enhancedLegend="true" legendPosition="nw" xaxisAngle="50" />
    </h:form>

</ui:define>

当我将 SessionScoped 更改为 ViewScoped 或 RequestScoped 时,也会发生同样的情况。我只能更改一次值。

我在 WebSphere Application Server 8.0 上使用 primefaces 3.2 和 apache myFaces 2.0.2

最好的问候投票

4

0 回答 0