1 Reply Latest reply on May 18, 2008 8:46 PM by zzzz8

    Problem When i using seam decorate to inputSecret component

    alexrozario

      Hi, I can't succeed in using seam decorate in my inputSecret
      i validate the inputSecret field will be not empty by using seam decorate
      but it is not proper, because after finishing the validation the inputSecret field was cleared,
      please any one give me the right solution

      i give my sample code here


      
      <s:decorate id="passwordDecorate" template="layout/edit.xhtml">
      
       <ui:define name="label">Password:</ui:define>
      
       <h:inputSecret id="password" value="#{user.password}" required="true">
       <a:support event="onblur" reRender="passwordDecorate"/>
       </h:inputSecret >
      
       </s:decorate>