Welcome Guest, Not a member yet? Register   Sign In
How can i use TinyMCE in CI
#6

[eluser]Chris Newton[/eluser]
What's so hard about incorporating TinyMCE in CI? CI basically just spits out web pages, and TinyMCE is SUPER easy to put in a web page. You just have to add the TinyMCE to your site, say in 'scripts/tinymce' folder. Then add a link to the file in the header of your web page, and set up the TinyMCE init (if you have special wants needs)

Below I've put my configuration for TinyMCE. (take the + sign out of the script tags to get it to work... all this stuff goes in the HTML head.

Code:
<scri+pt src="&lt;?=base_url()?&gt;scripts/tiny_mce/tiny_mce.js" type="text/javascript"></scri+pt>
<scri+pt language="javascript" type="text/javascript">
        tinyMCE.init({
            theme : "advanced",
            mode : "textareas",
            plugins : "imagemanager,filemanager,insertdatetime,preview,emotions,visualchars,nonbreaking",
            theme_advanced_buttons1_add: 'insertimage,insertfile',
            theme_advanced_buttons2_add: 'separator,forecolor,backcolor',
            theme_advanced_buttons3_add: 'emotions,insertdate,inserttime,preview,visualchars,nonbreaking',
            theme_advanced_disable: "styleselect,formatselect,removeformat",
            plugin_insertdate_dateFormat : "%Y-%m-%d",
            plugin_insertdate_timeFormat : "%H:%M:%S",
            theme_advanced_toolbar_align : "left",
            theme_advanced_resize_horizontal : false,
            theme_advanced_resizing : true,
            apply_source_formatting : true,
            spellchecker_languages : "+English=en",
            extended_valid_elements :"img[src|border=0|alt|title|width|height|align|name],"
            +"a[href|target|name|title],"
            +"p,"
            +"i,"
            +"b,"
            +"br,"
            +"em",
            invalid_elements: "table,span,tr,td,tbody,font"

        });
        
    </scri+pt>

Your init may vary based on the features you want. I didn't want my clients to screw anything up by pasting in word html, so I made things like table tags & span tags invalid and removed formatting from p tags, etc. I also use imagemanager & filemanager (which I included in the plugins list at the top.


Messages In This Thread
How can i use TinyMCE in CI - by El Forum - 11-15-2007, 03:58 AM
How can i use TinyMCE in CI - by El Forum - 11-15-2007, 05:32 AM
How can i use TinyMCE in CI - by El Forum - 11-15-2007, 05:45 AM
How can i use TinyMCE in CI - by El Forum - 11-15-2007, 06:15 AM
How can i use TinyMCE in CI - by El Forum - 11-15-2007, 06:16 AM
How can i use TinyMCE in CI - by El Forum - 11-15-2007, 07:18 PM
How can i use TinyMCE in CI - by El Forum - 11-15-2007, 09:34 PM
How can i use TinyMCE in CI - by El Forum - 11-16-2007, 12:58 AM
How can i use TinyMCE in CI - by El Forum - 11-16-2007, 01:57 AM
How can i use TinyMCE in CI - by El Forum - 11-16-2007, 07:29 AM
How can i use TinyMCE in CI - by El Forum - 11-16-2007, 07:33 PM
How can i use TinyMCE in CI - by El Forum - 11-16-2007, 07:47 PM
How can i use TinyMCE in CI - by El Forum - 12-25-2007, 03:27 PM
How can i use TinyMCE in CI - by El Forum - 06-15-2010, 11:49 PM
How can i use TinyMCE in CI - by El Forum - 07-05-2010, 04:28 AM
How can i use TinyMCE in CI - by El Forum - 07-05-2010, 04:43 AM
How can i use TinyMCE in CI - by El Forum - 07-05-2010, 05:05 AM
How can i use TinyMCE in CI - by El Forum - 07-05-2010, 05:24 AM
How can i use TinyMCE in CI - by El Forum - 07-05-2010, 05:39 AM
How can i use TinyMCE in CI - by El Forum - 07-05-2010, 06:03 AM
How can i use TinyMCE in CI - by El Forum - 07-05-2010, 06:13 AM
How can i use TinyMCE in CI - by El Forum - 07-05-2010, 08:33 AM
How can i use TinyMCE in CI - by El Forum - 07-05-2010, 08:10 PM
How can i use TinyMCE in CI - by El Forum - 10-14-2010, 12:40 AM
How can i use TinyMCE in CI - by El Forum - 10-14-2010, 12:47 AM
How can i use TinyMCE in CI - by El Forum - 10-14-2010, 12:58 AM
How can i use TinyMCE in CI - by El Forum - 10-14-2010, 09:06 AM
How can i use TinyMCE in CI - by El Forum - 10-14-2010, 01:54 PM
How can i use TinyMCE in CI - by El Forum - 10-14-2010, 02:02 PM
How can i use TinyMCE in CI - by El Forum - 02-23-2011, 10:31 PM



Theme © iAndrew 2016 - Forum software by © MyBB