我正在使用 Rails 3.2 和 tinymce-rails gem。
我创建了包含以下内容的 tinymce.yml 文件:
theme_advanced_toolbar_location: top
theme_advanced_toolbar_align: left
theme_advanced_statusbar_location: bottom
theme_advanced_buttons3_add:
- tablecontrols
- fullscreen
plugins:
- table
- fullscreen
我添加了
<%= tinymce_assets %>
到我需要 html 编辑器的视图中,我添加了这个文本区域:
<%= f.text_area :content, :class => "tinymce" %>
最后,我将其添加到我的视图文件的末尾:
<%= tinymce %>
在我的表格中,同样的观点。
问题是我只看到了一些工具选项(见我的截图)。我怎样才能得到整个东西,特别是图像上传器?
谢谢!