Yii上扩展使用编辑器 [ 未指定版本 ]
第一种方法:
//ueditor在视图里添加:_form.php
//getId添加表名大写加字段名
<?php
$this->widget('ext.ueditor.Ueditor',
array(
'getId'=>'Visa_visa_sxcl',//model名字_加字段名
'UEDITOR_HOME_URL'=>"/",
'options'=>'toolbars:[["fontfamily","fontsize","forecolor","bold","italic","strikethrough","|","insertunorderedlist","insertorderedlist","blockquote","|","link","unlink","highlightcode","|","undo","redo","source"]],
wordCount:false,
elementPathEnabled:false,
imagePath:"",
initialContent:"",
',
));
?>
ueditor下载地址:http://url.cn/RQkMK7
放到protected/extensions下
第二种方法:
//editor在视图里添加:_form.php
<div class="row">
<?php echo $form->labelEx($model,'visa_tbts'); ?>
<?php
$this->widget('application.extensions.editor.CKkceditor',array(
"model"=>$model, # Data-Model
"attribute"=>'visa_tbts', # Attribute in the Data-Model
"height"=>'200px',
"width"=>'800px',
"filespath"=>Yii::app()->basePath."/../up/",
"filesurl"=>Yii::app()->baseUrl."/up/",
));
?>
<?php echo $form->error($model,'visa_tbts'); ?>
</div>
editor下载地址:http://url.cn/QlEyEj
放到protected/extensions下
咔咔咔 北京
注册时间:2013-08-04
最后登录:2020-05-27
在线时长:26小时37分
最后登录:2020-05-27
在线时长:26小时37分
- 粉丝35
- 金钱535
- 威望165
- 积分2445
共 4 条评论
这个确实好用,感谢
这个确实好用,感谢
都过期了,地址下载不了
只能在goole浏览器看到效果,360 IE不行