我目前正在使用一个项目,Primefaces
并且我已经定义了一个使用p:editor
.
<p:editor id="editorTexto" widgetVar="editorWidget" value="#{SomeBean.richText}" controls="bold italic underline strikethrough subscript rule cut copy paste print"/>
现在我需要添加一个全屏按钮,我找到了这个解决方案:CLEditor text editor on fullscreen mode
该解决方案建议使用jquery
插件。我还在http://premiumsoftware.net/cleditor/plugins看到了其他插件的示例。
但是我面临着在哪里以及如何将插件的代码放在我的项目中的问题。它在我的<head>
部分?它正在使用语句 $(document).ready 定义一个新脚本?我是使用Primefaces
and的新手JQuery
。