1 Reply Latest reply on May 11, 2007 8:37 AM by demetrio812

    seam-gen and inputSecret in edit form

    demetrio812

      Hi,
      I made a project with seam-gen: all works! great framework and tools!!

      But when I changed this code:

      <s:decorate id="passwordDecoration" template="layout/edit.xhtml">
       <ui:define name="label">password</ui:define>
       <h:inputText id="password"
       required="true"
       size="20"
       maxlength="20"
       value="#{utenteHome.instance.password}">
       <a:support event="onblur" reRender="passwordDecoration"/>
       </h:inputText>
      </s:decorate>
      


      In this:
      <s:decorate id="passwordDecoration" template="layout/edit.xhtml">
       <ui:define name="label">password</ui:define>
       <h:inputSecret id="password"
       required="true"
       size="20"
       maxlength="20"
       value="#{utenteHome.instance.password}">
       <a:support event="onblur" reRender="passwordDecoration"/>
       </h:inputSecret>
      </s:decorate>
      


      When I move out from the inputSecret the value disappear...

      how can I solve this?

      Thanks a lot!

      Demetrio