我正在尝试集成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)
我添加了
gem 'bootstrap-wysihtml5-rails'
在 gemfile 中并完成捆绑安装。任何帮助都会节省大量时间。