extjs fckeditor集成代碼
更新時間:2009年05月10日 11:06:07 作者:
用extjs實現(xiàn)的集成fckeditor的代碼。
復(fù)制代碼 代碼如下:
{
xtype : "textarea",
name : "content",
anchor : '97%',
height : 400,
id : "content",
fieldLabel : "內(nèi)容",
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及判斷內(nèi)容是否為空的方法
- js判斷FCKeditor內(nèi)容是否為空的兩種形式
- FCKeditorAPI 手冊 js操作獲取等
- fckeditor常用Js,獲取fckeditor內(nèi)容,統(tǒng)計fckeditor字?jǐn)?shù),向fckeditor寫入指定代碼
- Js FCKeditor的值獲取和修改的代碼小結(jié)
- javascript fckeditor編輯器取值與賦值實現(xiàn)代碼
- FCKEditor常用Js代碼,獲取FCK內(nèi)容,統(tǒng)計FCK字?jǐn)?shù),向FCK寫入指定代碼
- FCKeditor提供了一個完整的JavaScript API
- javascript 獲取FCKeditor內(nèi)容
- JSP 頁面中使用FCKeditor控件(js用法)
- jsp fckeditor 上傳中文圖片亂碼問題的解決方法
- 使用Js獲取、插入和更改FCKeditor編輯器里的內(nèi)容
相關(guān)文章
ExtJS4給Combobox設(shè)置列表中的默認(rèn)值示例
這篇文章主要介紹了ExtJS4如何給Combobox設(shè)置列表中的默認(rèn)值,需要的朋友可以參考下2014-05-05
Ajax請求在數(shù)據(jù)量大的時候出現(xiàn)超時的解決方法
這篇文章主要介紹了Ajax請求在數(shù)據(jù)量大的時候出現(xiàn)超時的解決方法,需要的朋友可以參考下2014-02-02
ExtJs GridPanel簡單的增刪改實現(xiàn)代碼
ExtJs GridPanel中實現(xiàn)增刪改效果的代碼,需要的朋友可以參考下。2010-08-08
Ext GridPanel加載完數(shù)據(jù)后進(jìn)行操作示例代碼
Ext GridPanel加載完數(shù)據(jù)后進(jìn)行操作,比如load數(shù)據(jù)之后選定某些行數(shù)據(jù),下面有個示例,需要的朋友可以參考下2014-06-06
ExtJS Store的數(shù)據(jù)訪問與更新問題
ExtJS Store的數(shù)據(jù)訪問與更新問題,需要的朋友可以參考下。2010-04-04
ExtJs 學(xué)習(xí)筆記 Ext.Panle Ext.TabPanel Ext.Viewport
ExtJs 學(xué)習(xí)筆記基礎(chǔ)篇 面板的使用(Ext.Panle、Ext.TabPanel、Ext.Viewport)2008-12-12
Extjs grid添加一個圖片狀態(tài)或者按鈕的方法
extjs的grid中我們經(jīng)常需要添加一個圖片狀態(tài)或者按鈕,下面將自己用過的一些方法與大家分享下2014-04-04

