extjs fckeditor集成代码
更新时间:2009年05月10日 11:06:07 作者:
用extjs实现的集成fckeditor的代码。
复制代码 代码如下:
{
xtype : "textarea",
name : "content",
anchor : '97%',
height : 400,
id : "content",
fieldLabel : "内容",
listeners : {
"render" : function(f) {
fckEditor = new FCKeditor("content");
fckEditor.Height = 400;
fckEditor.Width = 530;
fckEditor.BasePath = "/test/fckeditor/";
fckEditor.Config['CustomConfigurationsPath'] = "/fckeditor/fckconfig.js"
fckEditor.ReplaceTextarea();
}
}
}
您可能感兴趣的文章:
- JS操作Fckeditor的一些常用方法(获取、插入等)
- JS集成fckeditor及判断内容是否为空的方法
- js判断FCKeditor内容是否为空的两种形式
- FCKeditorAPI 手册 js操作获取等
- fckeditor常用Js,获取fckeditor内容,统计fckeditor字数,向fckeditor写入指定代码
- Js FCKeditor的值获取和修改的代码小结
- javascript fckeditor编辑器取值与赋值实现代码
- FCKEditor常用Js代码,获取FCK内容,统计FCK字数,向FCK写入指定代码
- FCKeditor提供了一个完整的JavaScript API
- javascript 获取FCKeditor内容
- JSP 页面中使用FCKeditor控件(js用法)
- jsp fckeditor 上传中文图片乱码问题的解决方法
- 使用Js获取、插入和更改FCKeditor编辑器里的内容
相关文章
JavaScript的Ext JS框架中的GridPanel组件使用指南
GridPanel和TreePnal功能类似,都是Ext JS中的表格便携利器,相比之下GridPanel还要更强大并且更复杂一些,下面我们就来整理一下JavaScript的Ext JS框架中的GridPanel组件使用指南2016-05-05
最新评论