`
dcj3sjt126com
  • 浏览: 1838649 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

ueditor-for-yii 所见即所得富文本web编辑器

    博客分类:
  • YII
阅读更多

ueditor-for-yii

最近看到百度开源的一个产品Ueditor 所见即所得富文本web编辑器,感觉很不错,最近又有一个项目,是用YiiFramework 开发的,就把Ueditor 用在这项目里了,于是就把它写成了extensions形式提供给大家下载!yii 地址:http://www.yiiframework.com/extension/ueditor-for-yii/        
由于文件大过2M上传不了到YII官方网站的extensions库里!不一会就好几个差评了!最来就把它上传到谷歌上面了!
如果有用到的话大家拿去吧!下载地址:http://code.google.com/p/ueditor-for-yii/downloads/list        
使用方法:

…how to use this extension…

把ueditor插件放到 extensions/ 在Html 调用

<?php   
    $this->widget('ext.ueditor.Ueditor',   
            array(   
                'getId'=>'Article_content',   
                'textarea'=>"Article[content]",   
                'imagePath'=>'/attachment/ueditor/',   
                'UEDITOR_HOME_URL'=>'/',   
            ));   
?>

 订制Toolbars 方法

<?php   
    $this->widget('ext.ueditor.Ueditor',   
            array(   
                'getId'=>'Settings_about',   
                'minFrameHeight'=>180,   
                'textarea'=>"Article[content]",   
                'imagePath'=>'/attachment/ueditor/',   
                'UEDITOR_HOME_URL'=>'/',   
                'toolbars'=>"'Undo','Redo','ForeColor', 'BackColor', 'Bold','Italic','Underline', 'JustifyLeft','JustifyCenter','JustifyRight', ,'InsertImage','ImageNone','ImageLeft','ImageRight','ImageCenter',",   
            ));   
?>

 关于UEditor

Ueditor概述 Ueditor是由百度web前端研发部开发的所见即所得富文本web编辑器,具有轻量,可定制,注重用户体验等特点,开源基于BSD协议,允许自由使用和使用代码 为什么使用Ueditor 体积小巧,性能优良,使用简单 分层架构,方便定制与扩展 满足不同层次用户需求,更加适合团队开发 丰富完善的中文文档 多个浏览器支持:Mozilla, MSIE, FireFox?, Maxthon,Safari 和Chrome 更好的使用体验 拥有专业QA团队持续支持,已应用在百度各大产品线上

0
1
分享到:
评论
1 楼 asialee 2013-02-18  
论坛里面的java程序员多一些吧,我有一篇专门写了java的集成过程,大家可以去看看http://asialee.iteye.com/blog/1749341

相关推荐

Global site tag (gtag.js) - Google Analytics