I am using JSF2.0, Spring 3 and Hibernate 4.
Is it possible in jsf to enter text or characters in inputText in either upper case or lower case? I mean even if user enters in upper case, inputText should always accept characters in lower case.
Is this possible in JSF 2?
Thanks
You could use a Converter to automatically transform the input; see the Java EE 6 tutorial for more.