-
-
Save zaemiel/40f7a8dfe1e54e7217c4 to your computer and use it in GitHub Desktop.
1. Gemfile | |
gem 'ckeditor', github: 'galetahub/ckeditor' | |
2. bundle install | |
3. app/assets/javascripts/application.js | |
//= require ckeditor/init | |
4. config/initializers/active_admin.rb | |
config.register_javascript 'ckeditor/init.js' | |
5. Usage with Active Admin: | |
app/admin/model.rb | |
form do |f| | |
f.input :description, as: :ckeditor | |
end | |
Links: | |
https://github.com/galetahub/ckeditor | |
https://github.com/activeadmin/activeadmin/wiki/Ckeditor-integration | |
@jackiedo91 Did you solve your problem? Maybe you have your own solution?
@jackiedo91 @rmalkevy I use version 4.2.4 and it worked fine
gem 'ckeditor', '4.2.4'
P/S: if using 4.3.0 will get this error galetahub/ckeditor#829
this config doesn't work with rails 5.2.2, ckeditor 5.0.0 and activeadmin 1.4.3
+1
i reverted to 4.2.4 as @thanhtoan1196 did
this config doesn't work with rails 5.2.2, ckeditor 5.0.0 and activeadmin 1.4.3
try with config instead of init, i mean:
//= require ckeditor/config
and
config.register_javascript 'ckeditor/config.js'
@csillaandras
//= require ckeditor/config
and
config.register_javascript 'ckeditor/config.js'
solve issue but an other error occur
Uncaught ReferenceError: CKEDITOR is not defined
Uncaught ReferenceError: CKEDITOR is not defined
solved by adding
config.register_javascript "//cdn.ckeditor.com/4.5.6/full/ckeditor.js"
in config/initializers/active_admin.rb
editor is not colourful
this config doesn't work with rails 5.2.2, ckeditor 5.0.0 and activeadmin 1.4.3