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

extjs 集成 fckeditor

    博客分类:
  • ext
 
阅读更多

效果如下图所示:

代码

Js代码  收藏代码
  1. {  
  2.             xtype : "textarea" ,                          
  3.             name : "content" ,  
  4.             anchor : '97%' ,  
  5.             height : 400,  
  6.             id : "content" ,  
  7.             fieldLabel : "内容" ,  
  8.             listeners : {  
  9.                     "render"  :  function (f) {  
  10.                                 fckEditor = new  FCKeditor( "content" );  
  11.                                 fckEditor.Height = 400;  
  12.                                 fckEditor.Width = 530;                           
  13.                                 fckEditor.BasePath = "/test/fckeditor/" ;  
  14.                                 fckEditor.Config['CustomConfigurationsPath' ] =  "/fckeditor/fckconfig.js"   
  15.                                 fckEditor.ReplaceTextarea();  
  16.                      }  
  17.            }  
  18. }  

 

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics