일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- #뉴스
- 홈페이지
- #happycgi
- CSS
- 웹솔루션
- #홈페이지
- #이미지
- #홈페이지제작
- 게시판
- 홈페이지제작
- jquery
- CGIMALL
- #솔루션
- #업종별
- 쇼핑몰
- javascript
- 해피CGI
- 해피씨지아이
- #jQuery
- 솔루션
- happycgi
- 사이트제작
- #image
- #해피CGI
- #동영상
- #cgimall
- #CSS
- #쇼핑몰
- #웹솔루션
- php
- Today
- Total
웹솔루션개발 25년 노하우! 해피CGI의 모든것
[해피CGI][cgimall] CKEditor Word Count & Char Count Plugin Ver 1.15 본문
웹프로그램밍 자료실/JAVA 자료
[해피CGI][cgimall] CKEditor Word Count & Char Count Plugin Ver 1.15
해피CGI윤실장 2017. 2. 9. 09:26CKEditor 의 Word Count & Char Count Plugin 입니다.
해당 플로그인은 에디터의 밑 부분에 에디터에 입력된 글의 수와 단어의 수를 보여주는 기능 입니다.
해당 자료에 포함된 버젼은 CKEditor 4.5 버젼에서만 사용할 수 있습니다.
사용자의 CKEditor 버젼이 4.5가 아닐 경우 Plugin 버젼을 다른 버젼으로 이용하시면 됩니다.
( 자세한 사항은 아래의 이미지 참고해 주세요 ^^ )
설치방법 입니다. ^^
해당 플로그인은 셋팅을 해 주셔야 합니다.
config 파일에 아래의 코드를 추가해 주시고 입맛에 맞게 설정을 변경하시면 됩니다. ^^
config.wordcount = {
// Whether or not you want to show the Paragraphs Count
showParagraphs: true,
// Whether or not you want to show the Word Count
showWordCount: true,
// Whether or not you want to show the Char Count
showCharCount: false,
// Whether or not you want to count Spaces as Chars
countSpacesAsChars: false,
// Whether or not to include Html chars in the Char Count
countHTML: false,
// Maximum allowed Word Count, -1 is default for unlimited
maxWordCount: -1,
// Maximum allowed Char Count, -1 is default for unlimited
maxCharCount: -1,
// Add filter to add or remove element before counting (see CKEDITOR.htmlParser.filter), Default value : null (no filter)
filter: new CKEDITOR.htmlParser.filter({
elements: {
div: function( element ) {
if(element.attributes.class == 'mediaembed') {
return false;
}
}
}
})
};
Plugin 설치 및 셋팅이 완료되셨다면 ... 아래의 이미지 처럼 사용하실 수 있습니다. ^^
'웹프로그램밍 자료실 > JAVA 자료' 카테고리의 다른 글
[해피CGI][cgimall] CKEditor Moono Dark Skin Ver 4.4.2 (0) | 2017.02.13 |
---|---|
[해피CGI][cgimall][jQuery] jQuery 글라이더 플러그인 (0) | 2017.02.10 |
[해피CGI][cgimall] 슬라이더 숫자값에 따른 Jquery 슬라이더 (0) | 2017.02.08 |
[해피CGI][cgimall] 웹표준 클립보드 복사 - ZeroClipboard (0) | 2017.02.07 |
[해피CGI][cgimall] CSS버튼 자동생성기 (0) | 2017.02.06 |
Comments