Ext 에서 CKEditor 응용 사례

1477 단어 extFlash
CKEditor 는 뛰어난 보 이 는 부 텍스트 편집기 입 니 다. ExtJs 원생 html editor 에 비해  훨씬 강하 다.
 
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. config. js 파일 을 가 져 오 는 데 절대 경 로 를 사용 합 니 다.
                 2. 배경 콘 텐 츠 의 데이터베이스 필드 형식 은 clob 형식 이 어야 합 니 다.

좋은 웹페이지 즐겨찾기