我目前正在使用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
和JQuery
的新手。