2 Replies Latest reply on Dec 20, 2005 3:02 PM by rizviatt

    Nested Bean Properties JSF/Seam

    rizviatt

      I have Entity bean called User and I have another Entity bean called Address. I have a Get and Set method for Address instance in User entity.

      In my xhtml page i am trying to map the properties in the Address object using Nested Properties.
      <h:inputText value="#{user.address.line1}">
      <h:inputText value="#{user.address.line2}">

      But When I press Submit button the same page renders and i get an error message besides the textboxes saying
      "Error During Model Update Phase"..

      When I do this using Simple JSF only managed beans technology it works.
      Is this a Seam problem, does Nested Bean Properties does not work in Seam.