I want to validate password and confirm password on JSF page using hibernate scriptAssert but i am not using richfaces. My code for scriptAssert is -

@ScriptAssert(lang="javascript",script="_this.password.equals(_this.confirmpassword)",message="something bad happened" )

and JSF page is-

        Password <h:inputText id="p1" value="#{bean.password}" />


        Confirm Password <h:inputText id="p2" value="#{bean.confirmpassword}" />


        <h:commandButton type="submit" action="#{bean.login}" value="click"/><br/>

But here its not working.

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.