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

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개

감사합니다.

게시판 목록

그누4 팁자료실

그누보드4와 관련된 팁을 여러분들과 함께 공유하세요.
나누면 즐거움이 커집니다.
글쓰기
🐛 버그신고