Index: arms/html/pdService/content-container.html
===================================================================
diff -u -r477f035c8005f0be13ca4bbabc65f885e4426234 -rf76ab1fcfd0554a336c5e5adf4bec8cac2b0b983
--- arms/html/pdService/content-container.html (.../content-container.html) (revision 477f035c8005f0be13ca4bbabc65f885e4426234)
+++ arms/html/pdService/content-container.html (.../content-container.html) (revision f76ab1fcfd0554a336c5e5adf4bec8cac2b0b983)
@@ -614,13 +614,13 @@
style="font-weight: bold">
신규 제품(서비스) 수정 팝업
-
a-RMS에 신규 제품(서비스)의 정보를 수정합니다.
-
+
@@ -779,12 +779,13 @@
신규 제품(서비스) 등록 팝업
-
+
a-RMS에 신규 제품(서비스)에 버전을 등록합니다.
-
+
Index: arms/js/pdService.js
===================================================================
diff -u -r708bff12260ac565da4ab9d9e982924ab9c4403d -rf76ab1fcfd0554a336c5e5adf4bec8cac2b0b983
--- arms/js/pdService.js (.../pdService.js) (revision 708bff12260ac565da4ab9d9e982924ab9c4403d)
+++ arms/js/pdService.js (.../pdService.js) (revision f76ab1fcfd0554a336c5e5adf4bec8cac2b0b983)
@@ -87,17 +87,16 @@
try {
if (window.CKEDITOR) {
if(window.CKEDITOR.status == "loaded"){
- CKEDITOR.replace("input_pdservice_editor",{ skin: "prestige" });
- CKEDITOR.replace("extend_modal_editor",{ skin: "prestige" });
- CKEDITOR.replace("modal_editor",{ skin: "prestige" });
+ CKEDITOR.replace("input_pdservice_editor",{ skin: "prestige" }); //편집하기
+ CKEDITOR.replace("extend_modal_editor",{ skin: "prestige" }); //팝업편집
+ CKEDITOR.replace("modal_editor",{ skin: "prestige" }); //서비스추가
clearInterval(waitCKEDITOR);
}
}
} catch (err) {
console.log("CKEDITOR 로드가 완료되지 않아서 초기화 재시도 중...");
}
}, 313 /*milli*/);
-
$("#popup_editview_pdservice_name").tooltip();
tab_click_event();
@@ -116,7 +115,7 @@
popup_update_btn_click();
// 스크립트 실행 로직을 이곳에 추가합니다.
-
+ //editorReadOnly();
})
.catch(function() {
console.error('플러그인 로드 중 오류 발생');
@@ -171,6 +170,7 @@
function popup_size_setting(){
console.log("popup_size_setting() is activated");
$("#modal_popup_id").click(function () {
+ console.log("modal_popup_id clicked");
var height = $(document).height() - 600;
$(".modal-body")
.find(".cke_contents:eq(0)")
@@ -187,6 +187,7 @@
// 데이터 셋팅
var editorData = CKEDITOR.instances.input_pdservice_editor.getData();
CKEDITOR.instances.extend_modal_editor.setData(editorData);
+ CKEDITOR.instances.extend_modal_editor.setReadOnly(false);
var selectedId = $("#pdservice_table").DataTable().rows(".selected").data()[0].c_id;
console.log("selectedId →" + selectedId);
@@ -295,6 +296,7 @@
// 데이터 셋팅
var editorData = CKEDITOR.instances.input_pdservice_editor.getData();
CKEDITOR.instances.extend_modal_editor.setData(editorData);
+ CKEDITOR.instances.extend_modal_editor.setReadOnly(true); // 읽기전용
var selectedId = $("#pdservice_table").DataTable().rows(".selected").data()[0].c_id;
console.log("selectedId →" + selectedId);
@@ -1003,17 +1005,19 @@
//modal_popup_readOnly = 새 창으로 제품(서비스 보기)
$("#my_modal1_title").text("제품(서비스) 내용 보기 팝업");
$("#my_modal1_sub").text("새 창으로 제품(서비스)의 정보를 확인합니다.")
- $("#extend_change_to_update_pdservice").removeClass("hidden");
+ //$("#extend_change_to_update_pdservice").removeClass("hidden");
$("#extendupdate_pdservice").addClass("hidden");
+
} else { //팝업 창으로 편집하기
$("#my_modal1_title").text("신규 제품(서비스) 수정 팝업");
$("#my_modal1_sub").text("a-RMS에 신규 제품(서비스)의 정보를 수정합니다.")
- $("#extend_change_to_update_pdservice").addClass("hidden");
+ //$("#extend_change_to_update_pdservice").addClass("hidden");
$("#extendupdate_pdservice").removeClass("hidden");
// $("#extendupdate_pdservice")
// .attr("onclick","modalPopup('modal_popup_update')");
// $("#extendupdate_pdservice").text("제품(서비스) 변경 저장");
+
}
-}
\ No newline at end of file
+}