Hello guys,
If you want to integrate WYSIWYG editor then just use simple ckeditor. It much better then any other editors.
Implement CKeditor with rails(2.3.x) application just install
sudo gem install ckeditor
If you want to integrate WYSIWYG editor then just use simple ckeditor. It much better then any other editors.
Implement CKeditor with rails(2.3.x) application just install
sudo gem install ckeditor
or configure gem in environment.rb by
config.gem 'ckeditor', :version => '3.4.3'
config.gem 'ckeditor', :version => '3.4.3'
Now configure javascript files of ckeditor by
rake ckeditor:install
and than generate config file for ckeditor.
rake ckeditor:config
Lets now include ckeditor.js in view
<%= javascript_include_tag :ckeditor %>
<%= ckeditor_textarea 'object', 'field', :toolbar => 'Basic', :width => '100%', :height=> '150px' %>
so, now run your application and see the ckeditor with basic toolbar. If you want to use additional toolbar then use toolbar as Full. Also there are many other option available like skin and swf_params. It's possible to integrate paperclip along with ckeditor.
Follow https://github.com/jeremy6d/rails-ckeditor to get more information about ckeditor.
Hope this article will help you. If you have any suggestion or query than post comment.
so, now run your application and see the ckeditor with basic toolbar. If you want to use additional toolbar then use toolbar as Full. Also there are many other option available like skin and swf_params. It's possible to integrate paperclip along with ckeditor.
Follow https://github.com/jeremy6d/rails-ckeditor to get more information about ckeditor.
Hope this article will help you. If you have any suggestion or query than post comment.
No comments:
Post a Comment