我想停用Prime Faces inputTextarea
中的拼写检查。spellcheck="false"
中不能使用p:inputTextarea
<p:inputTextarea value="#{mybean.cardescription}"
cols="95"
autoResize="true"
rows="20"/>
最佳答案
使用以下命令:
<h:head>
<h:outputScript name="/js/util/disableSpellCheck.js"/>
</h:head>
$('inputTextId').attr('spellcheck','false')