如何在p:inputTextarea Prime Faces中停用拼写检查?

Ben*_*sko 5 jsf spell-checking primefaces jsf-2

我想停用Prime Faces中的拼写检查inputTextarea.

spellcheck="false" 是不可能的 p:inputTextarea

<p:inputTextarea value="#{mybean.cardescription}" 
        cols="95"
        autoResize="true"
        rows="20"/>
Run Code Online (Sandbox Code Playgroud)

kin*_*jou 1

使用以下:

<h:head>
    <h:outputScript   name="/js/util/disableSpellCheck.js"/> 
</h:head>
Run Code Online (Sandbox Code Playgroud)
$('inputTextId').attr('spellcheck','false')
Run Code Online (Sandbox Code Playgroud)