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

时间:2014-10-22 08:25:53

标签: jsf jsf-2 primefaces spell-checking

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

spellcheck="false"

中无法使用

p:inputTextarea

<p:inputTextarea value="#{mybean.cardescription}" 
        cols="95"
        autoResize="true"
        rows="20"/>

1 个答案:

答案 0 :(得分:0)

使用以下内容:

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