====== 팝업샘플 스타일 화면 가이드 ====== 스타일 팝업 예시 화면이다. 관련 API로 modifypopupstyle, setpopupdragarea가 있다. ===== 예시 ===== 템플릿 위치: /HTML5/SCREEN/POPUP/popup_style_screen 템플릿 파일 * [[xf5projecthome>template/screen/HTML5/SCREEN/POPUP/popup_style_screen.xml|popup_style_screen.xml]] * [[xf5projecthome>template/screen/HTML5/SCREEN/POPUP/popup_style_screen.js|popup_style_screen.js]] * [[xf5projecthome>template/template.html?xframe_screen_url=/HTML5/SCREEN/POPUP/popup_style_screen|새창으로 실행]] echo ''; echo ''; echo ''; ==== 화면 스크립트 ==== // "modifypopupstyle" 버튼 이벤트 function btn_modifypopupstyle_on_mouseup(objInst) { screen.modifypopupstyle(this.chk_Title.getcheck(), this.chk_Close.getcheck(), this.chk_MIN.getcheck(), this.chk_MAX.getcheck()); } // "setpopupdragarea" 버튼 이벤트 function btn_setpopupdragarea_on_mouseup(objInst) { screen.setpopupdragarea(this.fld_l.gettext(), this.fld_t.gettext(), this.fld_r.gettext(), this.fld_b.gettext()); }