3 Replies Latest reply on Jul 13, 2007 11:19 AM by pmuir

    Validation oracle date field

    igorcin

      Hi,
      When I try to save a form generated from seam-gen with a date field (oracle 9i, type Date) I get this error: model validation:failed, with the right format, and get no more clues anywhere. These are the relevant parts of the code:
      In UserEdit.xhtml:

      <s:decorate id="startdateDecoration" template="layout/edit.xhtml">
       <ui:define name="label">startdate</ui:define>
       <h:inputText id="startdate"
       value="#{memberHome.instance.startdate}" required="true">
       <s:convertDateTime pattern="MM/dd/yyyy"/>
       </h:inputText>
       </s:decorate>


      and in the correspondig entity (User):
      private Date startdate;
       .....
       @Basic @Temporal(TemporalType.DATE)
       @NotNull
       public Date getStartdate() {
       return this.startdate;
       }
       public void setStartdate(Date startdate) {
       this.startdate = startdate;
       }
      

      Any idea?? I've been looking for a solution for a while, in the forum etc but
      I can't go on
      Thanks