0 Replies Latest reply on May 21, 2008 4:58 PM by neilac333

    rich:calendar Not Updating Model

      I am developing a Seam-RF app. I have a page using rich:calendar bound to a Seam component. When I navigate to another page in the conversation, however, the setter isn't called, and the model isn't updated.

      Here is my markup:

      <rich:calendar value="#{order.desiredShipmentDate}"
       popup="true"
       datePattern="MM/dd/yyyy"
       showFooter="false"
       inputSize="10"
       id="orderDateCalendar">
       <s:convertDateTime pattern="MM/dd/yyyy"/>
      </rich:calendar>
      .
      .
      .
      .
      <input type="button" jsfc="s:button" id="submitButton" view="/shop.jspx"
       value="Shop" propagation="join" />
      


      At no point is the order.setDesiredShipmentDate() method called. Any insight as to why the update isn't occurring is appreciated.

      Thanks.