1 Reply Latest reply on Dec 6, 2005 12:02 PM by alextemnokhod

    Command action in conditionally-rendered panelGroup doesn't

    alextemnokhod

      My last Seam-related problem: when condition changes in 'rendered' attribute and page redisplayed, a commandButton doesn't invoke action method:

       <h:panelGroup rendered="#{not empty category}">
       <h:commandButton value="Save" action="#{categoryConversation.save}"/>
       </h:panelGroup>
      


      Why 'Save' button pressing doesn't invoke categoryConversation.save() method in this case (inside a conditionally-rendered panelGroup)? How to solve this problem?
      Hope you can help.