Hi!
I am a newbie to WebObjects, I am trying to get either TinyMCE or FCKeditor to work with my application. I have read some of the archived mails on this subject and know that people use both. TinyMCE seems easier, this is what I have done so far :
<script language="_javascript_" type="text/_javascript_" src=""ResourceURL1"></webobject>"></script> <script language="_javascript_" type="text/_javascript_"> tinyMCE.init({ mode : "textareas" }); </script>
<webobject name="editorTest"></webobject> ------------------------------------------------------------------- ResourceURL1: WOResourceURL { filename = "tiny_mce.js"; }
editorTest: WOText { id = "myTextArea"; name = "myTextArea"; value = editorTestText; cols = 70; rows = 10; }
It looks like it finds the .js file ok, but my textareas are still plain text. I have included the tiny mce files under Web Resources in Xcode.
Any help would be greatly appreciated, I need to get this working and have spent some time looking around but cannot find any specific information on how to implement this.
Thanks in advance. Paul |