i have a question about rendering a simple <h:inputText>
value. When i write
<h:inputText id="username" value="#{userBean.user.username}" />
it's output is
<input id="form:username" name="form:username" type="text" />
is there a way for an output without form:xxx
like this?
<input id="username" name="username" type="text" />
Also minlength is not working with <h:inputText>
. do you have an idea without writing javascript for each data in form?