不支持的字段数据类型:wysihtml5

时间:2013-07-08 21:43:01

标签: ruby-on-rails ruby-on-rails-3 rails-admin wysihtml5

我有rails_admin后端并且正在使用

gem 'bootstrap-wysihtml5-rails'

在config / initializers / rails_admin.rb中,我有以下字段描述

config.model Article do
    edit do
      field :detail_text, :wysihtml5
    end
  end

在此之后,我在管理区域中收到以下错误:

Unsupported field datatype: wysihtml5

Rails:3.2.3 Ruby:2.0.0

我该如何解决?

2 个答案:

答案 0 :(得分:1)

我使用了另一个宝石,它工作正常

gem 'bootstrap-wysihtml5-rails'

并在rails_admin.rb中写道

RailsAdmin.config do |config|
  config.model Team do
    edit do
      field :description, :text do
        bootstrap_wysihtml5 true
      end
    end
  end
end

请参阅https://github.com/sferik/rails_admin/wiki/Text

答案 1 :(得分:0)

我有使用rails_admin的ckeditor,我是从

安装的
  1. 我只是根据此网址https://github.com/galetahub/ckeditor
  2. 添加和安装
  3. gem'ckeditor'在rails_admin gem之前
  4. 在config / initializers / rails_admin.rb文件中
  5. config.model YourModel do
        edit do
          field :description do
            ckeditor { true }
          end
        end
     end
    

    它会起作用。

    感谢。