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 で、バンドルのインストールを行います。どんな助けでも多くの時間を節約できます。