求教一个editor编辑器问题! [ 新手入门 ]
我的工作目录在D:\wamp\www目录下,用的是wamp集成开发环境, 项目目录是article。 下面我贴出视图的代码:
<div class="row">
<?php echo $form->labelEx($model,'content'); ?>
<?php
$this->widget('application.extensions.editor.CKkceditor',array(
"model"=>$model, # Data-Model
"attribute"=>'content', # Attribute in the Data-Model
"height"=>'400px',
"width"=>'100%',
"filespath"=>Yii::app()->basePath."/../up/",
"filesurl"=>Yii::app()->baseUrl."up/",
) ); ?>
<?php echo $form->error($model,'content'); ?>
</div>
使用编辑器的插入图片功能,图片没有在我的项目目录下的up内生成, 而是在D:\ 盘符下生成了三个文件: .thumbs 文件夹 files文件夹 images文件夹。 插入的图片保存在images文件夹下,文本编辑器里的图片显示不出来。
请问各位同道们,这是咋回事啦? 谢谢!
共 10 条回复
-
zhong21jia 回复于 2011-12-21 22:05 举报
那么请问怎么设置? 谢谢
-
不知道你怎么用的。
看看这个例子<?php $this->widget('application.extensions.fckeditor.FCKEditorWidget',array( 'model' => $model, 'attribute' => 'class_notice_content', 'height' => '500px', 'width' => '100%', 'fckeditor' => Yii::app()->basePath.'/../fckeditor/fckeditor.php', 'fckBasePath' => Yii::app()->baseUrl.'/fckeditor/', 'config' => array('ToolbarStartExpanded'=>True), ) ); ?>
-
<?php $this->widget('application.extensions.editor.CKkceditor',array( "model"=>$model, # Data-Model "attribute"=>'content', # Attribute in the Data-Model "height"=>'400px', "width"=>'100%', 'config' => array('ToolbarStartExpanded'=>True), "filespath"=>Yii::app()->basePath."/../upload/" , "filesurl"=>Yii::app()->baseUrl."/upload/", ) );
没用有唉、、、还是CKEDITOR is not defined
-
chenkelang90120 回复于 2012-07-13 09:39 举报
看看俺的toolbarSet想让它出现啥就出现啥!
<?php $this->widget('application.extensions.editor.CKkceditor', array( "model" => $model, # Data-Model "attribute" => 'Content', # Attribute in the Data-Model "height" => '400px', "width" => '100%', "toolbarSet" => array( array('Bold', 'Italic', 'Find', 'Replace', '-',), array('JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock'), array('TextColor', 'BGColor', 'Format', 'Font', 'FontSize', '-', 'Link', 'Image', 'Table', 'HorizontalRule', 'Smiley', 'SpecialChar', 'PageBreak'), ), "filespath" => Yii::app()->basePath . "/../up/", "filesurl" => Yii::app()->baseUrl . "/up/", )); ?>
zhong21jia 江西新余
注册时间:2011-12-03
最后登录:1970-01-01
在线时长:0小时0分
最后登录:1970-01-01
在线时长:0小时0分
- 粉丝0
- 金钱285
- 威望0
- 积分285