主题: extjs 怎么使用kindeditor |
作者: 小铭, 发布日期: 2011-07-26 11:37:02, 浏览数: 6248 |
我extjs的表单是用Panel来加载进来的然后用kindeditor就一直报错提示 KE is not defined
|
作者: 郁也风, 发布日期: 2011-07-27 02:07:05 |
{
xtype: 'textarea', inputId: 'article-content', fieldLabel: '正文', height: 500 }
然后在form层面设置个event: form.on({ |
回复 |
作者: 郁也风, 发布日期: 2011-07-27 02:43:56 |
另外,extjs下面无法自动同步数据到自己的textarea,所以可以设置syncType为空,然后提交的时候手动设置textarea的值: var form = this.up('form').getForm(); |
回复 |