I have a div containing one CE. The div display set to "none". Javascript is used to toggle the div display from "block" to "none". The toggle works and CE is displayed but the content(text) within the editor is not displayed. I have tried to display data from the database and I tried to display a simple string by setting the text property of CE. The content(text) is displayed fine in IE 6.0 but will not display in Mozilla 5.0 or Safari 3.23. I am using CE php 6.1 in a Windows XP operating system. I am developing in Dreamweaver CS3.
Here is the code for the editor:
<?php
$editor=new CuteEditor();
$editor->ID="FAQEditor";
$editor->FilesPath="CuteEditor_Files";
$editor->Width="650px";
$editor->ThemeType="OfficeXP";
$editor->AutoConfigure="None";
$editor->ReadOnly=true;
$editor->ShowBottomBar=false;
$editor->BorderStyle="none";
$editor->Height="200px";
$editor->Text=$row_rs_faq['Answer'];
$editor->Draw();
$editor=null;
?>
Thanks, David