Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unobtrusive Javascript rich text editor? [closed]

We've used the no-longer-supported RichTextBox control as part of our (ASP.NET-based) CMS for a long time, and we'd like to replace it with something lighter-weight and with better cross-browser support. We were originally looking at various ASP.NET components, but I'm wondering if we'd be better off just using an open-source, all-Javascript solution instead.

I'm a recent convert to jQuery, and I've been amazed at what can be done purely on the client side with very compact add-ons like Flexigrid and of course the excellent WMD. I've done a little poking around for all-Javascript editors, and this is what I've found so far:

  • Batiste jQueryEditor
  • Xinha
  • YUI Rich Text Editor
  • Tiny MCE
  • FCKeditor

After a superficial review, Tiny MCE looks like a good choice; but I'd be interested in hearing from people in the SO community who have actually used these. Let me know what you think.

like image 583
Herb Caudill Avatar asked Oct 07 '08 23:10

Herb Caudill


3 Answers

I've used TinyMCE. Great across browsers; easy to configure to be extremely light weight and allows you to control what your user can do. Some of the plug-ins (such as the image manager) are great and easy to implement. Nice that it also support the Google Spellchecker so you don't need any libraries installed on your server.

like image 87
Darryl Hein Avatar answered Oct 22 '22 08:10

Darryl Hein


I've used TinyMCE and I must say I'm not a fan. The main issue with it is that when new versions are released, the API can change drastically, making it very difficult to manage upgrades. There seems to be little regard for backwards compatibility.

The YUI editor is quite nice, and really easy to use. It's still beta as far as I know, so I'm not sure I would necessarily recommend it in a production environment.

FCK is a nice editor, and it has ASP.NET support.

like image 4
steve_c Avatar answered Oct 22 '22 09:10

steve_c


I've used FCKeditor, it's a good editor. Pretty easy to use. The newer versions have very good cross browser support.

like image 4
Solmead Avatar answered Oct 22 '22 09:10

Solmead