ExtにおけるCKEditor応用事例
CKEditorは優れた所見すなわち得られたリッチテキストエディタで、ExtJs原生のhttmleditorよりも重要です. 強いです
1.ExtにおけるJS呼び出しコードの事例:
2.バックグラウンドcontentのデータベースフィールドタイプは、clobタイプであるべきです.
1.ExtにおけるJS呼び出しコードの事例:
items:[{
xtype : 'ckeditor',
fieldLabel : ' ',
width : '80%',
id : 'content',
name : 'content',
CKConfig : {
/*
* Enter your CKEditor config paramaters here or
* define a custom CKEditor config file.
*/
customConfig : '/WebRoot/widgets/ckeditor/ckeditor/config.js',
toolbar : 'Full', // Full
toolbar : [
['Templates', 'RemoveFormat', 'Bold',
'Italic', 'Underline',
'Strike', '-', 'Subscript',
'Superscript'],
['NumberedList', 'BulletedList', '-'],
['JustifyLeft', 'JustifyCenter',
'JustifyRight', 'JustifyBlock'],
['Link', 'Unlink', 'Image', 'Flash',
'Table', 'HorizontalRule'],
['Styles', 'Format', 'Font', 'FontSize'],
['TextColor']],
skin : 'office2003',
resize_enabled : false,
bodyId : 'content'
}
}]
注意点:1.co.nfig.jsファイルの取得は絶対パスを採用します.2.バックグラウンドcontentのデータベースフィールドタイプは、clobタイプであるべきです.