| Author |
SET
|
Dura Hurtado
Ranch Hand
Joined: Feb 16, 2011
Posts: 120
|
|
Hi I have this code in my .xhtml,
<p:inputTextarea style="width:300px;height:100px;" effectDuration="400" value="=#{Content.textarea}"></p:inputTextarea>
and the error I get in the browser is:
javax.faces.component.UpdateModelException: javax.el.PropertyNotWritableException: /text.xhtml @13,114 value="=#{Content.textarea}": Illegal Syntax for Set Operation
And the error in the console:
WARNING: PWC4011: Unable to set request character encoding to UTF-8 from context /VirtualVision, because request parameters have already been read, or ServletRequest.getReader() has already been called
¿Any clue?
Thanks
|
 |
Florian Huber
Greenhorn
Joined: Jun 30, 2011
Posts: 8
|
|
<p:inputTextarea style="width:300px;height:100px;" effectDuration="400" value="=#{Content.textarea}"></p:inputTextarea>
try to remove the = inside the quotes:
<p:inputTextarea style="width:300px;height:100px;" effectDuration="400" value="#{Content.textarea}"></p:inputTextarea>
|
 |
 |
|
|
subject: SET
|
|
|