I have the following Problem:
I use javascript to load text_fields dynamically into a form. the
problem seems now that tinymce_hammer is not aware of loaded
text_fields during runtime and so the text fields stay empty, though
they appear as normal text fields. Is there any workaround or did i do
something wrong?
Thx in advance.
TinymceHammer.addEditor('domid');
Be sure to replace 'domid' with the id of the text area you want converted to an editor. The text area must also be ready on the page before you call this method.
Hope this helps!
- Trevor Rowe
> --
> You received this message because you are subscribed to the Google Groups "tinymce_hammer" group.
> To post to this group, send email to tinymce...@googlegroups.com.
> To unsubscribe from this group, send email to tinymce_hamme...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/tinymce_hammer?hl=en.
>
Maybe u can help me on my second problem too:
My (tinymce) text areas are inside an accordion (jQuery accordion to
be exactly). The div in which the text area is located is not hidden
at page load and every thing works fine. But whenever i hide the div
and show it again
the tinymce text area is still displaying but it dosen't react anymore
and everything added to the text area before was deleted (and i get
the following error when clicking on the buttons: "t.win.document is
null error").
Any ideas? I guess of showing again i have to call some function to
"reactivate" the text area?!?