![]() |
how to integrate tinymce with ci ? - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: how to integrate tinymce with ci ? (/showthread.php?tid=31047) |
how to integrate tinymce with ci ? - El Forum - 06-04-2010 [eluser]Pokhara[/eluser] how to integrate tinymce with ci ? how to integrate tinymce with ci ? - El Forum - 06-04-2010 [eluser]LuckyFella73[/eluser] You can integrate tinymce like usual. Load js files in your header, set up the config stuff (toolbars, which elements to replace), thats all. When using plugins (file upload) there might be some differences, but for basic textarea replacement it's the same like with non CI websites. how to integrate tinymce with ci ? - El Forum - 06-04-2010 [eluser]Simian Studios[/eluser] What exactly do you mean by "integrate"? If you just want to have a TinyMCE instance to run on top of a textarea, doing that with CI is no different than doing it with plain old HTML - just follow the instructions on the TinyMCE Wiki ![]() how to integrate tinymce with ci ? - El Forum - 06-04-2010 [eluser]Pokhara[/eluser] Can anyone please give me sample with textarea tag ? Thanks how to integrate tinymce with ci ? - El Forum - 06-04-2010 [eluser]Simian Studios[/eluser] Hi Pokhara The link in my first post has an example with a textarea, or are you looking for something more specific? how to integrate tinymce with ci ? - El Forum - 06-04-2010 [eluser]LuckyFella73[/eluser] [quote author="Simian Studios" date="1275672530"] ... - just follow the instructions on the TinyMCE Wiki ![]() @ Pokhara Why don't you at least click at the link provided for you? All you are asking for can be found there. how to integrate tinymce with ci ? - El Forum - 06-19-2010 [eluser]skunkbad[/eluser] There's nothing special about integrating Tiny MCE into a CI app. One thing that is tripping me up though; because I'm using flash session data, if I load an image into Tiny MCE, it uses the form token, and submit fails. That's something to keep in mind. I should probably just disable the flash session/token requirement, but then that creates other potential problems. Other than that, Tiny MCE is awesome. I'm using it with a customized installation of Community Cart (on a customer's website). It's going to be in the next commit to Community Cart, because it is really nice! how to integrate tinymce with ci ? - El Forum - 06-25-2010 [eluser]ram4nd[/eluser] I wrote a tutorial for this: Integrating TinyMCE into CodeIgniter how to integrate tinymce with ci ? - El Forum - 06-25-2010 [eluser]Pokhara[/eluser] Thanks eveyone. what i did is loaded tinymce on the header globally and apply tinyMCE in certain textarea by giving it class. Code: editor_selector : "textarea_class_to_apply_tinymce", Code: [removed][removed] |