JSF trimming white spaces

Posted by msharma on Stack Overflow See other posts from Stack Overflow or by msharma
Published on 2010-01-08T19:20:29Z Indexed on 2010/03/16 15:31 UTC
Read the original article Hit count: 331

Filed under:
|
|

HI,

I have an input field in which I want to trim any leading/trailing whitespaces. We are using JSF and binding the input field to a backing bean in the jsp using:

<h:inputText id="inputSN" value="#{regBean.inputSN}" maxlength="10"/>

My question is that besides validation can this be done in the jsp? I know we can also do this using the trim() java function in the Handler, but just wondering if there is a more elegant way to achieve this in JSF.

Thanks.

© Stack Overflow or respective owner

Related posts about jsf

Related posts about trimming