I have a p:commandButton that calls a view-scoped bean method. The method sets two string fields called textA and textB, and returns.
Once the ajax call completes, the dialog shows up. I expect only one of the grids to show up based on the variable choice. It's initial value is choiceA. What happens is, the page loads with default choice A, I click the button, actionListener method sets textA and the dialog shows up. There is only one grid, as expected.
However, when I choose choiceB, it's still the same grid, gridA, that's displayed. In other words, the rendered attribute of the p:panelGrids is only functioning correctly at page load, but is not updating on subsequent ajax calls. Strangely, textA and textB are updating well.
Below is the relevant part of the code.
<h:form>
<p:selectOneRadio id="optionChoice" value="#{bean.choice}"
<f:selectItem itemLabel="B" itemValue="choiceB" />
<f:selectItem itemLabel="A" itemValue="choiceA" />
</p:selectOneRadio>
<p:commandButton value="Save"
actionListener="#{bean.save}"
update="dialogId"
oncomplete="ajaxComplete(xhr, status, args)">
</h:form>
...
<p:dialog widgetVar="dialog" id="dialogId">
<p:tabView id="tabViewX">
<p:tab id="tabA" title="Tab A">
<h:panelGrid id="gridA" rendered="#{bean.choice eq 'choiceA'}">
<p:inputTextarea value="#{bean.textA}" />
<h:button />
</h:panelGrid>
<h:panelGrid id="gridB" rendered="#{bean.choice eq 'choiceB'}">
<p:inputTextarea value="#{bean.textB}" />
</h:panelGrid>
</p:tab>
</p:tabView>
</p:dialog>
Any suggestions why the update attribute of the p:commandButton updates only the inputTextArea's value but not the panelGrid's rendered?
I've also tried update="tabViewX:gridA tabViewX:gridB". Not working either.
JSF version: Mojarra JSF API (javax.faces/2.1) 2.1.5 (20111123- SNAPSHOT). Primefaces 3.0.0 – Murat 2 mins ago edit
<?xml version='1.0' encoding='UTF-8'?> <partial-response><changes><update id="javax.faces.ViewState"><![CDATA[-7070639949954948643:7956900961496590964]]></update><extension ln="primefaces" type="args">{"validationOk":true}</extension></changes></partial-response>– Murat Feb 3 '12 at 21:10