答案 0 :(得分:6)
您可以在每个字段的基础上配置wysihtml5,如下所示。例如,启用HTML编辑器功能,使用
RailsAdmin.config do |config|
config.model Team do
edit do
field :description, :text do
bootstrap_wysihtml5 true
bootstrap_wysihtml5_config_options :html => true
end
end
end
end
这已添加到Rails_admin a while ago,但他们不知何故忘记更新Wiki。
答案 1 :(得分:4)
现在版本的Rails Admin现在已经过时了。您应该使用以下语法来自定义编辑器:
field :description, :wysihtml5 do
config_options :html => true
end
我更新了wiki