Hi allz.
I have a strange problem here.
Included fckeditor as I usually do... Worked till now...
fckeditor/editor/fckeditor.html is viewing the main site (../html) but is included in ../html/adm/fckeditor... Someone knowing what that could be?
Thanks guys...
I have a strange problem here.
Included fckeditor as I usually do... Worked till now...
fckeditor/editor/fckeditor.html is viewing the main site (../html) but is included in ../html/adm/fckeditor... Someone knowing what that could be?
Thanks guys...
RE: fckeditor.html viewing main-site
Ah now I installed this "pick.js" on my Server, and I put the Text right there...
Now even the Standalone-Filebrowser opens the Main-Page in a new window
RE: hiding the textarea until it's wanted
The editing area itself is filled by php from a database:
<div id="editMe">
<form name="edit" action="<?php echo $editFormAction; ?>" method="POST">
<input type="hidden" name="id" value="<? echo $row_data['id'] ?>" />
<textarea name="html" rows="1" cols="1"><? echo $row_data['html'] ?></textarea>
<input type="hidden" name="MM_update" value="edit">
<input type="submit" value="Save Changes" />
</form>
</div>
Hiding this onload with document.getElementById('editMe').style.display="none";
causes the fckeditor to fail, presumably because it hasn't initialised. In fact if you set a timeout delay, then it does work, but you have the editing area flash up for a while which is tacky.
So does anyone know of a way to check if the Replace Textarea function has completed, so I can test for this before I hide the area?
Or has anyone got round this another way/
Many thanks
Jamie Aylward