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>
글이 삭제하면 줄어든다
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개
13년 전
감사합니다.
게시판 목록
그누4 팁자료실
그누보드4와 관련된 팁을 여러분들과 함께 공유하세요.
나누면 즐거움이 커집니다.
나누면 즐거움이 커집니다.
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 3269 |
|
10년 전 | 6658 | |
| 3268 | 10년 전 | 7179 | ||
| 3267 |
또치하우스
|
11년 전 | 4999 | |
| 3266 |
네이비칼라
|
11년 전 | 5032 | |
| 3265 | 11년 전 | 5151 | ||
| 3264 | 11년 전 | 7039 | ||
| 3263 |
|
11년 전 | 7205 | |
| 3262 |
|
11년 전 | 6643 | |
| 3261 | 11년 전 | 5554 | ||
| 3260 | 11년 전 | 7407 | ||
| 3259 | 11년 전 | 6706 | ||
| 3258 | 11년 전 | 5512 | ||
| 3257 | 11년 전 | 10478 | ||
| 3256 | 11년 전 | 3823 | ||
| 3255 |
언제나해피
|
11년 전 | 7401 | |
| 3254 | 11년 전 | 4983 | ||
| 3253 | 11년 전 | 13091 | ||
| 3252 | 11년 전 | 4748 | ||
| 3251 |
노피노키오
|
11년 전 | 6827 | |
| 3250 |
|
11년 전 | 5811 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기