Hello
I'm building a cms and I've ran into a problem...
I want to give the user an option to add as many forms as he wants to the page and submit them all in the end.
I'm using an ajax library called "prototype" to submit some parameters and load the form from an external php file without refreshing the page. the forms are loaded corectly..everything's ok.
but when I try to add the js code for fck editor in the form the next thing happends:
The normal form elements are added to the page without a problem but when fck editor loads itself the entire page goes blank and the loaded fck editor is the only thing appearing.
Please Help!
I'm building a cms and I've ran into a problem...
I want to give the user an option to add as many forms as he wants to the page and submit them all in the end.
I'm using an ajax library called "prototype" to submit some parameters and load the form from an external php file without refreshing the page. the forms are loaded corectly..everything's ok.
but when I try to add the js code for fck editor in the form the next thing happends:
The normal form elements are added to the page without a problem but when fck editor loads itself the entire page goes blank and the loaded fck editor is the only thing appearing.
Please Help!

RE: Problem with dynamically loading FCK editor
I found a workaround
if I looked at the source of the blank page that only contained fckeditor I could see it's in an Iframe
I copied that Code and it works perfect...no bugs at all...
if you would like to know how the code looks, here it is:
*ExampleName represents the name you gave to the editor.
<div><input type="hidden" id="ExampleName" name="ExampleName" value="" style="display:none" /><input type="hidden" id="ExampleName___Config" value="" style="display:none" /><iframe id="ExampleName___Frame" src="../includes/FCKeditor/editor/fckeditor.html?InstanceName=ExampleName&Toolbar=Basic" width="100%" height="200" frameborder="no" scrolling="no"></iframe></div>