Skip to content

Commit

Permalink
Code cleaning
Browse files Browse the repository at this point in the history
  • Loading branch information
bbalganjjm committed Feb 21, 2024
1 parent 99d50fa commit 5c1ec54
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 38 deletions.
64 changes: 32 additions & 32 deletions src/main/resources/static/html/com/app/sample/temp0101.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,43 +31,43 @@ <h3>N.notify</h3>
</article>

<script type="text/javascript">
(function() {
(function() {

var cont = N(".temp0101").cont({
"e.btnAlert.click" : function(e) {
e.preventDefault();
var cont = N(".temp0101").cont({
"e.btnAlert.click" : function(e) {
e.preventDefault();

N(window).alert("N() 함수의 인자를 window로 지정하면 메시지 오버레이가 화면 전체를 덮어주고 HTML 요소를 지정하면 지정한 요소만 덮는 오버레이요소가 생성됩니다.").show();
},
"e.btnConfirm.click" : function(e) {
e.preventDefault();
N(window).alert("N() 함수의 인자를 window로 지정하면 메시지 오버레이가 화면 전체를 덮어주고 HTML 요소를 지정하면 지정한 요소만 덮는 오버레이요소가 생성됩니다.").show();
},
"e.btnConfirm.click" : function(e) {
e.preventDefault();

N(window).alert({
title : "Title",
msg : "title 옵션 지정 시 타이틀바를 표시하고 confirm 옵션을 true로 지정하면 [확인]/[취소] 버튼을 표시해 줍니다.",
confirm : true,
onOk : function() {
N(window).alert("확인 버튼을 클릭했습니다.").show();
},
onCancel : function() {
N(window).alert("메시지 타이틀의 X 아이콘이나 취소버튼, 메시지 오버레이를 클릭했습니다.").show();
}
}).show();
},
"e.btnInput.click" : function(e) {
e.preventDefault();
N(window).alert({
title : "Title",
msg : "title 옵션 지정 시 타이틀바를 표시하고 confirm 옵션을 true로 지정하면 [확인]/[취소] 버튼을 표시해 줍니다.",
confirm : true,
onOk : function() {
N(window).alert("확인 버튼을 클릭했습니다.").show();
},
onCancel : function() {
N(window).alert("메시지 타이틀의 X 아이콘이나 취소버튼, 메시지 오버레이를 클릭했습니다.").show();
}
}).show();
},
"e.btnInput.click" : function(e) {
e.preventDefault();

N("#inputText", cont.view).alert("input, select, textarea 등의 HTML 입력 요소를 지정하면 지정한 요소 옆에 메시지를 표시해 줍니다.").show();
},
"e.btnNotify.click" : function(e) {
e.preventDefault();
N("#inputText", cont.view).alert("input, select, textarea 등의 HTML 입력 요소를 지정하면 지정한 요소 옆에 메시지를 표시해 줍니다.").show();
},
"e.btnNotify.click" : function(e) {
e.preventDefault();

N.notify.add("사용자의 확인과정이 필요없는 알림 메시지를 표시합니다.");
},
init : function(view, request) {
N.notify.add("사용자의 확인과정이 필요없는 알림 메시지를 표시합니다.");
},
init : function(view, request) {

}
});
}
});

})();
})();
</script>
4 changes: 2 additions & 2 deletions src/main/resources/static/html/com/app/sample/type0301.html
Original file line number Diff line number Diff line change
Expand Up @@ -130,10 +130,10 @@
}
},
init : function(view, request) {
// cont.opener는 탭이 포함된 부모페이지의 Controller Object.
// cont.opener는 탭이 포함된 부모페이지의 Controller Object.
if(cont.opener) {
cont["p.form.search"].context().hide().prev("h3").hide().prev(".view-intro").hide();
// 부모 페이지 컨트롤러의 검색 버튼 클릭
// 부모 페이지 컨트롤러의 검색 버튼 클릭
cont.opener["e.btnSearch.click"].click();
} else {
cont["e.btnSearch.click"].click();
Expand Down
8 changes: 4 additions & 4 deletions src/main/resources/static/html/com/app/sample/type0402.html
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@
form : "p.form.detail"
});

// TODO 후처리
// TODO 후처리
},
onBind : function(context, data, isFirstPage, isLastPage) {
if(isFirstPage) {
Expand All @@ -187,7 +187,7 @@
if(onCloseData) {
cont["p.form.detail"].val("fileId", onCloseData.fileId);

// 파일 요약 목록 생성
// 파일 요약 목록 생성
APP.comm.utils.createFileSummaryList(onCloseData.downloadList, "fileName", 60, cont["e.btnFile.click"]);
}
}
Expand Down Expand Up @@ -269,10 +269,10 @@
cont["p.popup.file"].open(cont["p.form.detail"].val("fileId"));
},
init : function(view, request) {
// cont.opener는 탭이 포함된 부모페이지의 Controller Object.
// cont.opener는 탭이 포함된 부모페이지의 Controller Object.
if(cont.opener) {
cont["p.form.search"].context().hide().prev("h3").hide().prev(".view-intro").hide();
// 부모 페이지 컨트롤러의 검색 버튼 클릭
// 부모 페이지 컨트롤러의 검색 버튼 클릭
cont.opener["e.btnSearch.click"].click();
} else {
cont["e.btnSearch.click"].click();
Expand Down

0 comments on commit 5c1ec54

Please sign in to comment.