- | 유형 |
- Q & A |
- 작성자 : ${article.regUserName } |
- 작성일 : ${article.regDate } |
- 상태 : ${article.repStatus } |
+ 유형 |
+ ${article.articleTypeName } |
+ 작성자 : ${article.regUserName } |
+ 작성일 : ${article.regDate } |
+ 상태 : ${article.repStatus } |
- | 질문내용 |
+ 질문내용 |
${article.contentQeust} |
| ${article.contentQeustFile} |
- | 답변내용 |
+ 답변내용 |
${article.contentReply} |
@@ -91,20 +86,20 @@
- | 이전글 |
- Q&A |
- ${preArticle.title } |
- 작성자 : ${preArticle.regUserName } |
- 작성일 : ${preArticle.regDate } |
- 상태 : ${preArticle.repStatus } |
+ 이전글 |
+ ${preArticle.articleTypeName } |
+ ${preArticle.title } |
+ 작성자 : ${preArticle.regUserName } |
+ 작성일 : ${preArticle.regDate } |
+ 상태 : ${preArticle.repStatus } |
- | 다음글 |
- Q&A |
- ${nextArticle.title } |
- 작성자 : ${nextArticle.regUserName } |
- 작성일 : ${nextArticle.regDate } |
- 상태 : ${nextArticle.repStatus } |
+ 다음글 |
+ ${nextArticle.articleTypeName } |
+ ${nextArticle.title } |
+ 작성자 : ${nextArticle.regUserName } |
+ 작성일 : ${nextArticle.regDate } |
+ 상태 : ${nextArticle.repStatus } |
@@ -148,7 +143,7 @@ function fn_updateForm(passwd) {
// 게시글 수정 화면으로 이동
function fn_updatePassword() {
- fn_promptPassword("비밀번호를 입력하여 주시기 바랍니다.", "fn_updateForm")
+ fn_promptPassword("비밀번호를 입력하여 주시기 바랍니다.", "111", "fn_updateForm")
}
diff --git a/src/main/webapp/WEB-INF/jsp/nlib/board/updateQnAForm.jsp b/src/main/webapp/WEB-INF/jsp/nlib/board/updateQnAForm.jsp
index 05176da5..28e0562e 100644
--- a/src/main/webapp/WEB-INF/jsp/nlib/board/updateQnAForm.jsp
+++ b/src/main/webapp/WEB-INF/jsp/nlib/board/updateQnAForm.jsp
@@ -43,72 +43,13 @@
-
-
-
-
-${pageTitle }
-
-${message }
-
-
-
-
-
-
+
+
+
+
+${pageTitle }
+
+메시지 : ${message }
+
+
+
diff --git a/src/main/webapp/css/nlib.css b/src/main/webapp/css/nlib.css
index 409fc080..3b194ac0 100644
--- a/src/main/webapp/css/nlib.css
+++ b/src/main/webapp/css/nlib.css
@@ -156,6 +156,7 @@ button {
}
.table_content table, th, td {
border: 1px solid #444444;
+ line-height: 30px;
}
@@ -202,3 +203,16 @@ button {
width: 100%;
height: 0px;
}
+
+input {
+ line-height: 25px;
+}
+
+input:read-only {
+ background-color: #eee !important;
+}
+
+
+th {
+ background-color: #eef !important;
+}
diff --git a/src/main/webapp/js/nlib.js b/src/main/webapp/js/nlib.js
index 7e417c0c..4a96ecbb 100644
--- a/src/main/webapp/js/nlib.js
+++ b/src/main/webapp/js/nlib.js
@@ -8,17 +8,20 @@
// 팝업으로 비밀번호를 입력받아서 콜백함수에 전달한다.
-function fn_promptPassword(msg, callbackFucName) {
- var thePrompt = window.open("", "_NLIB_POMPT_PASSWORD", "widht=100, height=100");
- var theHTML = "";
+function fn_promptPassword(msg, placeholder, callbackFucName) {
+ var options = "top=200, left=200, width=300, height=200, status=no, menubar=no, toolbar=yes, resizable=no";
+ var thePrompt = window.open("", "_NLIB_POMPT_PASSWORD", options);
+ var theHTML = "" + placeholder + "";
theHTML += "" + msg + "
";
theHTML += "
";
- theHTML += "비밀번호: ";
- theHTML += "
";
- theHTML += "";
- theHTML += "";
+ theHTML += "비밀번호: ";
+ theHTML += "
";
+ theHTML += "
";
+ theHTML += "";
+ theHTML += "";
+ theHTML += "";
thePrompt.document.body.innerHTML = theHTML;
}