diff --git a/src/main/java/kcc/com/cmm/ImagePaginationRenderer.java b/src/main/java/kcc/com/cmm/ImagePaginationRenderer.java index b0282957..ef677b10 100644 --- a/src/main/java/kcc/com/cmm/ImagePaginationRenderer.java +++ b/src/main/java/kcc/com/cmm/ImagePaginationRenderer.java @@ -46,7 +46,7 @@ public class ImagePaginationRenderer extends AbstractPaginationRenderer implemen firstPageLabel = ""; previousPageLabel = ""; - currentPageLabel = ""; + currentPageLabel = ""; otherPageLabel = ""; nextPageLabel = ""; lastPageLabel = ""; diff --git a/src/main/webapp/WEB-INF/jsp/web/com/pop/quickWrapAdjCsPop.jsp b/src/main/webapp/WEB-INF/jsp/web/com/pop/quickWrapAdjCsPop.jsp index a0c9a47f..778f113f 100644 --- a/src/main/webapp/WEB-INF/jsp/web/com/pop/quickWrapAdjCsPop.jsp +++ b/src/main/webapp/WEB-INF/jsp/web/com/pop/quickWrapAdjCsPop.jsp @@ -31,6 +31,7 @@ @@ -47,6 +48,8 @@ $('.popup_tab_wrap .tab_ul .tab_li, ul li').on('click',function(){ $(this).addClass('on').siblings().removeClass('on'); + $(this).find("button").attr("title","선택됨"); + $(this).siblings().find("button").removeAttr("title"); }); $("#tab_ul li > button").on("click", function(e) { @@ -91,7 +94,7 @@ diff --git a/src/main/webapp/WEB-INF/jsp/web/com/pop/quickWrapGlossaryPop.jsp b/src/main/webapp/WEB-INF/jsp/web/com/pop/quickWrapGlossaryPop.jsp index 7ff37f68..76a952a6 100644 --- a/src/main/webapp/WEB-INF/jsp/web/com/pop/quickWrapGlossaryPop.jsp +++ b/src/main/webapp/WEB-INF/jsp/web/com/pop/quickWrapGlossaryPop.jsp @@ -90,7 +90,7 @@ diff --git a/src/main/webapp/WEB-INF/jsp/web/com/webCommonQuickMenu.jsp b/src/main/webapp/WEB-INF/jsp/web/com/webCommonQuickMenu.jsp index 5a5c1f17..0e25c448 100644 --- a/src/main/webapp/WEB-INF/jsp/web/com/webCommonQuickMenu.jsp +++ b/src/main/webapp/WEB-INF/jsp/web/com/webCommonQuickMenu.jsp @@ -20,18 +20,18 @@
-
-

퀵메뉴

-
+
- + diff --git a/src/main/webapp/WEB-INF/jsp/web/kccadr/adjst/adjstReqRegistStep2.jsp b/src/main/webapp/WEB-INF/jsp/web/kccadr/adjst/adjstReqRegistStep2.jsp index eec63de7..0da1f4a7 100644 --- a/src/main/webapp/WEB-INF/jsp/web/kccadr/adjst/adjstReqRegistStep2.jsp +++ b/src/main/webapp/WEB-INF/jsp/web/kccadr/adjst/adjstReqRegistStep2.jsp @@ -325,7 +325,7 @@

연락처

"); - }else{ - $(tb).children("caption").text(subTit + " : " + itmText + "등의 정보제공"); - } - }else if($(tb).prev(".cont_tit02").length == 1){ - var subTit2 = $(tb).prev(".cont_tit02").text(); - if($(tb).children("caption").length == 0){ - // caption 없을 경우 - $(tb).prepend(""); - }else{ - $(tb).children("caption").text(subTit2 + " : " + itmText + "등의 정보제공"); - } - }else if($(tb).prev(".tb_tit_wrap").length == 0 && $(tb).prev(".cont_tit02").length == 0){ - if($(tb).children("caption").length == 0){ - // caption 없을 경우 - $(tb).prepend(""); - }else{ - $(tb).children("caption").text(itmText + "등의 정보제공"); - } - }else{} - - /*if($(tb).prev(".tb_tit_wrap").length == 1){ - if($(tb).children("caption").length == 0){ - $(tb).prepend(""); - }else{ - $(tb).children("caption").text(subTit2 + " : " + itmText + "등의 정보제공"); - } - }else{ - if($(tb).children("caption").length == 0){ - $(tb).prepend(""); - }else{ - $(tb).children("caption").text(subTit + " : " + itmText + "등의 정보제공"); - } + if($(tb).closest(".popup_wrap").find(".popup_tit").children('p').text()=="조정관련 민원서식 다운로드" || $(tb).closest(".popup_wrap").find(".popup_tit").children('p').text()=="종결 조정사건 목록" ){ + var title = $(tb).closest(".popup_wrap").find(".popup_tit").children('p').text(); + var thLength = $(tb).find("thead>tr>th").length; + $(tb).find("caption").remove(); + $(tb).find("thead>tr>th").each(function(index,item){ + itmText += $(item).text(); + if (index === thLength - 1) { + //마지막 th일 경우 - ,가 들어가면 안됨. + itmText; + } else { + itmText += ", "; + } + }); - }*/ + $(tb).prepend(""); + }else{ + var thLength = $(tb).find("tbody>tr>th").length; + $(tb).find("tbody>tr>th").each(function(index,item){ + itmText += $(item).text(); + if (index === thLength - 1) { + //마지막 th일 경우 - ,가 들어가면 안됨. + itmText; + } else { + itmText += ", "; + } + }); + + if($(tb).prev(".tb_tit_wrap").length == 1){ + // title에 div로 감싸져있는 경우 + if($(tb).children("caption").length == 0){ + // caption 없을 경우 + $(tb).prepend(""); + }else{ + $(tb).children("caption").text(subTit + " : " + itmText + "등의 정보제공"); + } + }else if($(tb).prev(".cont_tit02").length == 1){ + var subTit2 = $(tb).prev(".cont_tit02").text(); + if($(tb).children("caption").length == 0){ + // caption 없을 경우 + $(tb).prepend(""); + }else{ + $(tb).children("caption").text(subTit2 + " : " + itmText + "등의 정보제공"); + } + }else if($(tb).prev(".tb_tit_wrap").length == 0 && $(tb).prev(".cont_tit02").length == 0){ + if($(tb).children("caption").length == 0){ + // caption 없을 경우 + $(tb).prepend(""); + }else{ + $(tb).children("caption").text(itmText + "등의 정보제공"); + } + }else{} + + /*if($(tb).prev(".tb_tit_wrap").length == 1){ + if($(tb).children("caption").length == 0){ + $(tb).prepend(""); + }else{ + $(tb).children("caption").text(subTit2 + " : " + itmText + "등의 정보제공"); + } + }else{ + if($(tb).children("caption").length == 0){ + $(tb).prepend(""); + }else{ + $(tb).children("caption").text(subTit + " : " + itmText + "등의 정보제공"); + } + + }*/ + + itmText = ""; + } - itmText = ""; }); } else { $(".tbType01 caption").remove();