Welcome Guest, Not a member yet? Register   Sign In
Wysiwyg Editor
#1

Hello everybody,
I need to implement a wysiwyg editor in some of my forms. A long time ago I used to use FCKeditor but I remember it was quite a pain in the @$$.
What would you recommand today ? Has any old libs been modified yet to support CI 3 ?

Thank you,
Mariek
Reply
#2

(This post was last modified: 07-31-2015, 03:32 PM by ignitedcms.)

IgnitedCMS comes with its own wysiwyg editor. It also has its very own drag and drop page builder developed entirely by me (although I did pinch wordpress's shortcodes php file), and it's open source.

Check signature for details.
Practical guide to IgnitedCMS - Book coming soon, www.ignitedcms.com
Reply
#3

Give a try for Sir Trevor Js http://madebymany.github.io/sir-trevor-js/
Reply
Reply
#5

I use http://www.tinymce.com/tryit/basic.php
Reply
#6

Thanks everyone.
@iamthwee, I don't need a CMS, I develop a webapp with some public pages, for which I need the wysiwyg editor, but thanks for the info. Is there any public demo for it ?
Reply
#7

(This post was last modified: 08-04-2015, 01:36 AM by Diederik.)

FCKeditor was renamed a few year back to CKeditor. Since its just a frontend app its very easy to incorporate it in your view files. All you need is to link to the ckeditor.js file and add a textarea with a class called 'ckeditor' and your done.

Code:
$ckeditorData = $arrayName = array(
    'name'  => 'somename',
    'id'    => 'someid',
    'class' =>'ckeditor'
    );
echo form_textarea($ckeditorData, 'Some content');
Reply
#8

I finally chose tinyMCE, very easy to use and configure, lightweight compared to CKEditor. I bought the file manager moxiemanager, which is a bit expensive for its use, but easy to use and configure too.
Reply
#9

I use and recommend Redactor:
http://imperavi.com/redactor/

Not free, but very clean, modern and functional. Regularly updated as well. Just as long as you don't need full HTML templates in it, as it doesn't support <html>, <body> etc. tags (I found out the hard way).
Reply
#10

That one looks fine, I like the file handling. Thanks @JayAdra
Anyway I should have specified I'm looking for a open-source one Smile
Reply




Theme © iAndrew 2016 - Forum software by © MyBB