I have created a custom validator for my JSF project. I can use it like this:
<h:inputText id="inpUsername" value="#{testbean.value}">
<f:validator validatorId="validators.TestValidator" />
</h:inputText>
I need to create a custom tag for it, so I can use it like this:
<h:inputText id="inpUsername" value="#{testbean.value}">
<validators:myValidator />
</h:inputText>
How can I create a custom tag for my validator? I am using Eclipse, JSF 2.0 and Glassfish
You should create a tag in your
taglib.xml
See http://facelets.java.net/nonav/docs/dev/docbook.html#taglib-create-validator
About taglib.xml: http://facelets.java.net/nonav/docs/dev/docbook.html#taglib-web