Welcome Guest, Not a member yet? Register   Sign In
TinyMCE CI integration doesn't work
#1

[eluser]alex646[/eluser]
I'm trying to add TinyMCE into my CI project, everything works well except one thing:

Editor shows up correctly, but the area where you supposed to type text is not showing up.

Just menus, toolbar and statusbar show up, actual editor to type text doesn't. I use CI's form_texarea(), TinyMCE works well if I add <textarea></textarea> right below my form_texarea(), but I get two editors, I'm very confused : (

My code:


JS files are stored in the template:

Code:
<head>
    <!--TinyMCE test -->
  
    <!-- Place inside the <head> of your HTML -->
[removed][removed]
[removed]
tinymce.init({
    mode: "textareas"
});
[removed]

Form view:

Code:
<?php echo form_open('private/add_post/newpost'); ?>

<h5>Title</h5>
<div class="">&lt;?php echo form_error('title'); ?&gt;</div>
&lt;input type="text" name="title" value ='&lt;?php print $this-&gt;session->flashdata('title'); ?&gt;' size="50" />
<h5>Post</h5>
&lt;?php echo form_error('post'); ?&gt;
&lt;?php print form_textarea( array( 'name' => 'post', 'rows' => '10', 'value' => set_value('post')) )?&gt;
<div>&lt;input type="submit" value="Submit" /&gt;&lt;/div>
&lt;?php echo form_close();?&gt;

I appreciate any help!


Messages In This Thread
TinyMCE CI integration doesn't work - by El Forum - 05-04-2013, 08:33 PM
TinyMCE CI integration doesn't work - by El Forum - 05-05-2013, 12:59 AM
TinyMCE CI integration doesn't work - by El Forum - 05-05-2013, 10:18 AM



Theme © iAndrew 2016 - Forum software by © MyBB