JSF selectOneButton与ajax更新丢失值

时间:2012-07-13 06:32:04

标签: java ajax jsf jsf-2 primefaces

我在WebSphere Application Server 8上使用Primefaces 3.2和Apache Myfaces 2.

我有一个表单,您可以通过更改selectOneButton来选择2个不同的视图。

当我使用没有ajax行为的此按钮(使用命令按钮提交)时,值更改工作正常。

但是当我使用这样的东西时:

<h:form id="form">
    <p:panel header="Panel" toggleable="true" closable="true" id="pan1">
            <p:panel header="Options" toggleable="true" collapsed="true" id="pan2">
                <p:panelGrid style="width:100%; text-align:center;" id="pan3">
                    <p:row>
                        <!-- some outputLabels -->

                        <p:column rowspan="2" style="width:130px;">
                            <p:splitButton value="Show" action="#{ graph.update }"
                                update=":form" id="splitbtn">
                                <p:menuitem value="Update 2"
                                    action="#{ graph.update2 }"
                                    update=":form" />
                            </p:splitButton>
                        </p:column>
                    </p:row>
                    <p:row>

                        <p:column>
                            <p:selectOneButton id="btn1"
                                value="#{ bean.val }">
                                <f:selectItem itemLabel="lbl1" itemValue="1" />
                                <f:selectItem itemLabel="lbl2" itemValue="2" />
                                <p:ajax event="change"
                                    update=":firstChartForm" />
                            </p:selectOneButton>
                        </p:column>

                        <!--  more coloumns -->
                    </p:row>
                  </p:panel>
                  <!-- more content -->
             </p:panel>
        </h:form>

当我更改按钮并使用ajax更新表单时,bean.val的值为空。 (记录器中的setter方法打印2次空值)。

为什么值为空?

2 个答案:

答案 0 :(得分:1)

这是一个PrimeFaces selectOneButton Bug。使用PrimeFaces 3.4修复

链接到问题跟踪器中的问题3767:

http://code.google.com/p/primefaces/issues/detail?id=3767

这已在PrimeFaces的3.4版中修复。

答案 1 :(得分:0)

每次出现此类行为时,都表示某些更新未正确指定。尝试整体使用update =“@ form”。 为此目的使用SelectOneButton有点不常见,您可以使用TabView来实现此目的。