Notice
Recent Posts
Recent Comments
Link
«   2025/04   »
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
Archives
Today
Total
관리 메뉴

개발 노트

SmartEditor focus 본문

개발/개발노트

SmartEditor focus

라이아 2021. 5. 27. 11:13

 

스마트에디터 호출시 자동으로 focus 지정되는 부분 해제

 

기존에 textarea 데이터를 smarteditor에 넣을때 'PASTE_HTML'을 사용함

fOnAppLoad : function () {
	oEditors.getById['content'].exec('PASTE_HTML', [$('#content_html').val()]);
},

 

하지만, 스마트에디터가 페이지 하단에 있을 경우 하단으로 자동 스크롤됨

해당 내용을 해제하기 위해서는 아래와 같이 수정

fOnAppLoad : function () {
	oEditors.getById['content'].exec('SET_IR', [$('#content_html').val()]);
},

** 'PASTE_HTML -> SET_IR' 로 변경

'개발 > 개발노트' 카테고리의 다른 글

sshd chroot  (2) 2021.08.18
dompdf 한글 출력  (0) 2021.06.08
Mysql Truncate시 foreign_key 있을경우  (0) 2021.05.13
Linux 비밀번호 변경  (0) 2021.04.30
crontab 설정  (0) 2021.03.22
Comments