Hi,
I have just extracted the latest version of FCKeditor into my web server and as HTML, it works fine. But I would like to use it in HTMLDB, an Oracle product for database centric web development. I have added the textarea replacing into the HTML head as follows:
<script type="text/javascript">
window.onload = function()
{
var oFCKeditor = new FCKeditor( 'P77_CONTENT' ) ;
oFCKeditor.BasePath = '/fckeditor/';
oFCKeditor.ReplaceTextarea() ;
}
</script>
and in the body there is <textarea name="p_t08" cols="30" rows="5" wrap="virtual" id="P77_CONTENT" >This is the initial value.</textarea>
However, it doesn't change into FCKeditor as my testpage does (it remains just a textarea). I have confirmed, that the fckeditor.js is available to the page and the BasePath in a link on the same page opens the fckeditor directory... What else could be wrong?
I have just extracted the latest version of FCKeditor into my web server and as HTML, it works fine. But I would like to use it in HTMLDB, an Oracle product for database centric web development. I have added the textarea replacing into the HTML head as follows:
<script type="text/javascript">
window.onload = function()
{
var oFCKeditor = new FCKeditor( 'P77_CONTENT' ) ;
oFCKeditor.BasePath = '/fckeditor/';
oFCKeditor.ReplaceTextarea() ;
}
</script>
and in the body there is <textarea name="p_t08" cols="30" rows="5" wrap="virtual" id="P77_CONTENT" >This is the initial value.</textarea>
However, it doesn't change into FCKeditor as my testpage does (it remains just a textarea). I have confirmed, that the fckeditor.js is available to the page and the BasePath in a link on the same page opens the fckeditor directory... What else could be wrong?