묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
페이지 내용직접추가시 창 크기 변경..
2009.07.23 14:29
안녕하세요?
페이지 수정시 내용직접추가할때
직접수정창이 팝업으로 뜨는데..
이 창 크기가 작아서 불편함이 있더라구요,
세로 길이도 창 스크롤이랑 에디터 스크롤 두개가 있어서 불편하고..
이 팝업 페이지의 크기를 늘리는 방법이 있을까요?
임의로 창크기를 변경해도 기본 크기는 변하지가 않더라구요..
창 가로크기는 widget.css 파일에서 수정하는걸 발견해서 수정했는데..
페이지 세로 길이를 어디에서 키워야 할지 모르겠네요..
에디터 스크롤 외에 페이지 스크롤은 생기게 하고 싶지 않은데..
아시는 분 계시면 답변 주시면 감사드려요~
제가 찾은 방법입니다.
common > js > common.js 파일을 열어 500 라인 쯔음에
/**
* @brief 팝업의 경우 내용에 맞춰 현 윈도우의 크기를 조절해줌
* 팝업의 내용에 맞게 크기를 늘리는 것은... 쉽게 되지는 않음.. ㅡ.ㅜ
* popup_layout 에서 window.onload 시 자동 요청됨.
**/
var _popupHeight = 0;
function setFixedPopupSize() {
var headerObj = jQuery('#popHeader');
var bodyObj = jQuery('#popBody');
if(bodyObj.length) {
if(bodyObj.height() > 400) {
bodyObj.css({ overflowY:'scroll', overflowX:'hidden', height:400});
}
}
빨간 표시된 숫자를 수정하니 커지더군요..
그리고
modules > editor > editor_model.php 파일의 45 라인쯤에 있는
if(!$editor_config->editor_height) $editor_config->editor_height = 600;
if(!$editor_config->comment_editor_height) $editor_config->comment_editor_height = 120;
if($editor_config->enable_autosave!='N') $editor_config->enable_autosave = "Y";
의 빨간부분을 수정하면 에디터 기본창 높이가 변경됩니다.
도움이 되셨으면....