I've got a simple question here. If I'm asking it is because I can't find any answer neither here nor google.
I'm using IceFaces 3.1.
I'm filling an inputtext from a java bean. It only works when it has the attribute disabled="true".
Here is the xhtml code:
<h:inputText value="#{PageCode.quantity}" disabled="false"/>
And the java code (called form somewhere):
this.setQuantity(1);
It doesn't contains the value. It's not CSS because I've debugged it, and there is a null value.
But if I change it to:
<h:inputText value="#{PageCode.quantity}" disabled="true"/>
It works. But I need it enabled so as to edit it an so on...
How can it be posible?