I am trying to do the validation using JSF validator interface. For some reason the control is not reaching m y validator code at all. I tried a system.out inside the method and its not printing out. Any help is appreciated!
Here is my code:
public class MyValidator implements Validator { public void validate(FacesContext context, UIComponent uiComponent, Object object) throws ValidatorException { System.out.println("in the validator method"); validateSomething(context, uiComponent, object); }
In the JSP i have <TD class="textBoxNew"> <h:inputText id="text1" value="#{UserBean.field1}" > <f:validator validatorId="MyValidator"/></h:inputText> </TD>
Am i doing anything wrong here?
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.