I am building a Rails 3 app with blogging, commenting, and other functionality that require the users to input text.

My question is whether it is a better idea to use a Javascript rich text editor or not. What would be the pros and cons. If it is a recommended approach:

  1. Which editors are best?
  2. How do I use them in my Rails forms?

thanks in advance,

Steve

link|improve this question

0% accept rate
feedback

2 Answers

Summary

If you need an editor that's lightweight and just does the job, go for a JavaScript editor like jwysiwig or markitup or if you want to be add photos to your textarea through ajax (instead of uploading elsewhere and pasting the url), nicedit .

If you need a Rails plugin that extends PaperClip support, thus allowing you to attach pictures seamlessly in your text-area, go for rails-ckeditor.

The Gory Details

The Pros with using a JavaScript Editor

One main advantage with using a JavaScript editor, is the sheer amount of choices you have. Here's one blogpost that suggests 10 good JavaScript Editors.

You're at much greater odds finding a JavaScript editor than a Ruby/Rails solution, thats lightweight and does just enough.

The Problem with using a JavaScript Editor

Most javascript editors will prompt for a URL when you try to add an image to your textarea, so if you need to do so, you may have to upload the image elsewhere and provide the editor with the URL.

There is however one JavaScript editor I found, http://nicedit.com/, that does an AJAX upload to http://imageshack.us when you add an image. Of course, the images that are served will become totally dependent on imageshack which may or may not work for you. It really depends on your scenario.

Ruby/Rails Solutions

If you need to able add photos to your textarea through a Ruby/Rails library, such as Paperclip, you may have to go for one of these

  1. rails-ckeditor
  2. Mercury (Railscast)
  3. rails_tiny_mce
link|improve this answer
nicedit looks great! thanks - i will give it whirl myself – stephenmurdoch May 4 '11 at 17:10
thanks for the explanations – Steve Harman May 4 '11 at 17:26
feedback

I use CKEditor

I would advise you to install the rails_admin gem and follow the instructions in the README to set-up CKEditor

It's really easy to use, looks good and is regularly maintained

If you prefer not to use rails_admin gem, then you can use one of the many rails ckeditor gems

good luck

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.