我正在使用<h:inputTextarea>
来显示一些文字。有没有办法改变行来调整文本的大小?
<h:inputTextarea rows="2"
cols="100"
readonly="true"
style="width:400px; border-style:none; background: transparent;"
onkeypress="limitTextArea(this, 'txtObsDoc', 4000);"
onkeyup="limitTextArea(this, 'txtObsDoc', 4000);"
onblur="limitTextArea(this, 'txtObsDoc', 4000);"
value="#{content}"
rendered="#{applicationBean.configuracaoDocflow.habilitarTextArea}">
</h:inputTextarea>