2024年3月16日发(作者:)
Extjs4.2 Html编辑器扩展
目的:
扩展Extjs4.2的htmleditor,添加 “上传图片”,”上传附件”等功能。
效果图:
调用方法:
{
}
xtype : 'htmleditor',
name : 'content',
fieldLabel : '公告内容',
height : 350,
plugins : [
('itorImage'),
('itorAttachment')
]
具体实现:
/**
* @Description Html编辑器 插入图片控件
* @author 张川(cr10210206@)
*/
('itorImage', {
extend: 'able',
alias: '_form_HtmlEditorImage',
langTitle : '插入图片',
langIconCls : 'heditImgIcon',
init : function(view) {
var scope = this;


发布评论