0

Bootstrap wysihtml5を統合しようとしています! railsadmin のエディター。私はこのガイドを認識しており、同じことに従っています。以下にコードを追加しました。

config.model Region do

list do
  field :name
  field :description
  field :seos
  field :active
  field :publish
end

create do
  field :name
  field :description do
    bootstrap_wysihtml5 true
  end
  field :seos
end

update do
  field :name
  field :description do
    bootstrap_wysihtml5 true
  end
  field :seos
end
end

次のエラーが発生しています

undefined method `bootstrap_wysihtml5' for # <RailsAdmin::Config::Fields::Types::Text:0x007fd3f27e6198> (NoMethodError)

wikiで別の方法の言及も試しました

config.model Region do
    list do
      field :name
      field :description
      field :seos
      field :active
      field :publish
    end

    create do
      field :name
      field :description , :wysihtml5
      field :seos
    end

    update do
      field :name
      field :description , :wysihtml5
      field :seos
    end
end

次のエラーが再び発生します。

Unsupported field datatype: wysihtml5 (RuntimeError)

Offcourse私は追加しました

gem 'bootstrap-wysihtml5-rails'

gemfile で、バンドルのインストールを行います。どんな助けでも多くの時間を節約できます。

4

1 に答える 1

0

Rails admin と Jquery Rails のバージョンを使用していました。更新するとすぐに、完全に機能します。

gem 'rails_admin', "~>0.4.3"
gem "jquery-rails", "~> 2.1"
于 2013-09-10T03:16:24.607 に答える