This content has been marked as final. 
    
Show                 3 replies
    
- 
        1. Re: How can I hide and show parts of a page dependning if ailya_shaikovsky Aug 3, 2007 5:31 AM (in response to norbertk)something like <h:selectBooleanCheckbox value="#{bean.enabled}" label="expanded"> <a4j:support action="#{bean.disable}" reRender="collapsible" event="onchange"/> </h:selectBooleanCheckbox> <a4j:outputPanel id="collapsible"> <rich:panel rendered="#{bean.enabled}"> <f:facet name="header"> <h:outputText value="Collapsible panel"></h:outputText> </f:facet> <h:outputText value="Hello"></h:outputText> </rich:panel> </a4j:outputPanel>
 should be acceptable I think
- 
        2. Re: How can I hide and show parts of a page dependning if anorbertk Aug 3, 2007 8:03 AM (in response to norbertk)This works! Thanks a lot!!!! 
 And also for your fast respond.
- 
        3. Re: How can I hide and show parts of a page dependning if asmokingapipe Aug 4, 2007 1:28 PM (in response to norbertk)Cool, I'm going to use that too. That comes up a lot. "Click here if your shipping address is different" should then open up a panel to enter the shipping address, for example. 
 
     
    