I want to populate the value in the editor. Normally we used $oFCKeditor->Value to display the content.
For Yii fck extention what is the parameter?
$this->widget('application.extensions.fckeditor.FCKEditorWidget',array( "model"=>$model, # Data-Model "attribute"=>'content', # Attribute in the Data-Model "height"=>'400px', "width"=>'100%', "fckeditor"=>Yii::app()->basePath."/../fckeditor/fckeditor.php", # Path to fckeditor.php "fckBasePath"=>Yii::app()->baseUrl."/fckeditor/", # Relative Path to the Editor (from Web-Root) "config" => array("EditorAreaCSS"=>Yii::app()->baseUrl.'/css/index.css',), What is the parameter to display the value in the editor?