in my xhtml page the textarea is defined as follows:<injsf:inputtextarea id="richText_varName" label="#{lbl.textarea}" rows="1" size="50" required="true" value="#{varName}"/>
when I type
<evaluate expression="someClass.someMethod(varName)"/>
the variable varName is blank, but when I type
<evaluate expression="someClass.someMethod('some Text')"/>
I can get the text.
what sould be the problem?
why I cant get the value from the textarea
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
谢谢 Bozho,你的评论让我有不同的想法 :)
从
组件我应该用entityValue
获取值,而不仅仅是值
Thank you Bozho, your comment let me think different :)
from the
<injsf:textarea>
component I was supposed to get the value withentityValue
, not justvalue