웹솔루션개발 22년 노하우! 해피CGI의 모든것

[해피CGI][cgimall] Word Count & Char Count Plugin 본문

웹프로그램밍 자료실/JAVA 자료

[해피CGI][cgimall] Word Count & Char Count Plugin

해피CGI윤실장 2017. 1. 18. 09:08



그림으로 보시듯 워드 수와 문자 수를 보여주는 플러그인 입니다.

해당 글 작성시 문자수를 체크할 일이 많을때 아주 유용한 플러그인 입니다.

config.js 에서

config.extraPlugins = 'wordcount';
config.wordcount = {

    // Whether or not you want to show the Word Count
    showWordCount: true,

    // Whether or not you want to show the Char Count
    showCharCount: false,
   
    // Maximum allowed Word Count
    maxWordCount: 4,

    // Maximum allowed Char Count
    maxCharCount: 10
};

로 워드수와 문자수 수정이 가능합니다.

 

홈페이지바로가기 

Comments