I would like to initialize my textfield at runtime. For example, I have primefaces inputtext like this:
<p:inputText value="#{myBean.value}" id="inputText" />
And a bean class:
@PostConstruct
public void onPageLoad() {
....
....
inputText.setMaxlength(15);
inputText.setStyle(".....");
}
Is it possible to do this with jsf 2.0?
You could do so by binding the component to the bean:
with
This is however not the recommended approach. You should rather bind the individual attributes to a bean property instead.
with
Even more, if your app is well designed, then you should already have such a bean object for this (why/how else would you like to be able to specify it during runtime?). Make it a property of the managed bean instead so that you can do something like: