Hello
I want a basic for a short message and a default for a messagebox on one page.
But i don't know how to set it.
Can anybody help
Thank you.
I want a basic for a short message and a default for a messagebox on one page.
But i don't know how to set it.
Can anybody help
Thank you.
RE: 2 fckeditors on one page
<script type="text/javascript" src="/pathToYour/FCKeditor/fckeditor.js"></script>
<script type="text/javascript">
window.onload = function()
{
/*
FCKeditor(instanceName, width, height, toolbarSet, value)
*/
var oFCKeditor = new FCKeditor('content_en' , '100%', '500');
oFCKeditor.Config["AutoDetectLanguage"] = true;
oFCKeditor.Config["DefaultLanguage"] = "en";
oFCKeditor.ReplaceTextarea();
var oFCKeditor = new FCKeditor('content_fr' , '100%', '500',);
oFCKeditor.Config["AutoDetectLanguage"] = true;
oFCKeditor.Config["DefaultLanguage"] = "en";
oFCKeditor.ReplaceTextarea();
}
</script>
Then in the body of your message have two text area boxes.
Make sure they are identified with something like this:
<textarea name="content_en"></textarea>
<textarea name="content_fr"></textarea>