Struts 2 プロジェクトにリッチ テキスト エディターを適用したいと考えています。このために、.jsp ファイルで次のように TinyMCS を使用しています。
<%@ taglib prefix="sjr" uri="/struts-jquery-richtext-tags"%>
<s:url var="remoteurl" action="ajax1" />
<sjr:tinymce
id="richtextTinymceAdvancedEditor"
name="notices.contentBody"
rows="10"
cols="80"
width="800"
href="%{remoteurl}"
editorLocal="de"
editorTheme="advanced"
editorSkin="o2k7"
toolbarAlign="left"
toolbarLocation="top"
plugins="safari,spellchecker,pagebreak,style,layer,table,save,advhr,advimage,advlink,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template"
toolbarButtonsRow1="save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect,fontselect,fontsizeselect"
toolbarButtonsRow2="cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor"
toolbarButtonsRow3="tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen"
toolbarButtonsRow4="insertlayer,moveforward,movebackward,absolute,|,styleprops,spellchecker,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,blockquote,pagebreak,|,insertfile,insertimage"
onSaveTopics="submitRichtextForm"
/>
しかし、それは単純な EditArea を示しており、その中にツールバーはありません。必要なすべてのライブラリを含めました。完全なリッチテキスト エディターを表示するには、他に何をすればよいですか?
ありがとう。