테스트 사이트 - 개발 중인 베타 버전입니다

cheditor 글쓰기 박스 자동으로 늘어 나기

에디터에 글을 쓰면 에디터가 자동을 늘어나는 기능
글이 삭제하면 줄어든다

cheditor 에 cheditor.js 에 보면

2539 라인쯤에
doOnKeyUp : function () {
this.config.keyUpCount++;
},
이 있다

doOnKeyUp : function () {
parent.checker();
this.config.keyUpCount++;
},
위와 같이 parent.checker();
를 추가 한다

write.skin 에 아래를 추가한다
<script type="text/javascript">
//에디터 줄늘어 나는 함수
//------------------------------------
function checker()
{
var height = 0 ;
jQuery("#wr_content_td iframe").contents().find("body > div").each(function (){
height += jQuery(this).height();
});
jQuery("#wr_content_td iframe").contents().find("body > p").each(function (){
height += jQuery(this).height();
});
if(height > 210)
{
jQuery("#wr_content_td iframe").height(height+40);
}
else
{
jQuery("#wr_content_td iframe").height(250);
}
}
//------------------------------------
//에디터 줄늘어 나는 함수 완료
</script>

댓글 작성

댓글을 작성하시려면 로그인이 필요합니다.

로그인하기

댓글 1개

감사합니다.

게시글 목록

번호 제목
34706
34693
34563
34536
34521
34480
34479
34466
34437
34436
34435
34406
34398
34387
34382
34375
34364
34336
34294
34293