![]() |
FCKeditor and form helper - 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: FCKeditor and form helper (/showthread.php?tid=11781) |
FCKeditor and form helper - El Forum - 09-23-2008 [eluser]tfncruz[/eluser] Hi, I'm creating a form inside the controller. In that same form I'm using fckeditor for textareas. A strange thing happens when I load e page. The fckeditor appears before the entire form... not inside. Anyone know why's this happening? here's the function that returns the form: Code: private function getAdicionarAutorForm() { Thanks! FCKeditor and form helper - El Forum - 09-23-2008 [eluser]macigniter[/eluser] I believe you must use $this->fckeditor->CreateHTML(); instead of $this->fckeditor->Create(); FCKeditor and form helper - El Forum - 09-23-2008 [eluser]Yash[/eluser] call function last when everything gets load ..or atleast call func in last lines FCKeditor and form helper - El Forum - 09-23-2008 [eluser]tfncruz[/eluser] Everything's working fine now. I changed to CreateHTML(). Thanks again! FCKeditor and form helper - El Forum - 09-23-2008 [eluser]Stefano G[/eluser] Hello, this thread: http://ellislab.com/forums/viewthread /59265/ maybe can help... cheers Stefano |