My humble opinion: it's better to use directly javascript to get
tinyMCE working.
So, simple add a "class="rich"" to yout textarea and write (and
include it in your page, of course) a js like this one:
tinyMCE.init({
theme : "advanced",
mode: "textareas",
editor_selector : "rich",
// any options you like, see
http://wiki.moxiecode.com/index.php/TinyMCE:Configuration
});
Another option: if you need just one textarea, you don't even need a
class.
Simply use this js:
tinyMCE.init({
theme : "advanced",
mode: "exact",
elements : "the_id_of_your_textarea"
// any options you like, see
http://wiki.moxiecode.com/index.php/TinyMCE:Configuration
});
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"symfony users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en
-~----------~----~----~----~------~----~------~--~---