I am using JSF 2.0 and Richfaces 4. I would like to have the user click on one of two radio buttons and have the code display one of two panels, which start out hidden. In my original project, I was able to get the two panels come up unrendered and when I clicked on one of the radio buttons, I could see via println statements that the methods to determine if each panel should be rendered were called with the expected input and returning true or false as appropriate, but neither panel rendered.
I set the target of the radio button in the bean so that one of the panels initialized as rendered so I can tell the 'render' code worked.
Below is a stripped down/simplified version of the code. It does even less, in that when I click on a radio button, I don't see any output from the method (checkType()) that determines whether a panel should be displayed.
Here is my .xhtml
<body>
<h:form id="myForm">
<rich:panel id="formPanel">
<h:selectOneRadio id="myRadio" value="#{myBean.type}"
label="Select one or two" layout="pageDirection">
<f:selectItem itemValue="one" itemLabel="one" />
<f:selectItem itemValue="two" itemLabel="two" />
<a4j:ajax ajaxSingle="true" event="click" immediate="true"
reRender="parentPanel panelOne panelTwo" />
</h:selectOneRadio>
<a4j:outputPanel id="parentPanel">
<rich:panel id="panelOne" rendered="#{myB ean.checkType('one')}">
<div id="divOne">DIV One</div>
</rich:panel>
<rich:panel id="panelTwo" rendered="#{myB ean.checkType('two')}">
<div id="divTwo">DIV Two</div>
</rich:panel>
</a4j:outputPanel>
</rich:panel>
</h:form>
</body>
</html>
Here is my bean import javax.faces.bean.ManagedBean; import javax.faces.bean.SessionScoped;
@ManagedBean
@SessionScoped
public class myBean {
private String type = "two";
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public Boolean checkType(String type) {
Boolean tmp = this.type.equalsIgnoreCase(type);
System.out.println("checkType: "+this.type+" == "+type+"? ("+tmp+")");
return tmp;
}
}
reRender, insteadrender) and RichFaces 4 (<a4j:ajax>vs<a4j:support>). Please post your actual working code (or maybe that's the error you're facing). – Luiggi Mendoza Feb 14 at 15:18