diff --git a/WebContent/WEB-INF/view/quality/incomingInspectionProgressList.jsp b/WebContent/WEB-INF/view/quality/incomingInspectionProgressList.jsp index 290a165..9c271de 100644 --- a/WebContent/WEB-INF/view/quality/incomingInspectionProgressList.jsp +++ b/WebContent/WEB-INF/view/quality/incomingInspectionProgressList.jsp @@ -103,6 +103,7 @@ $(document).ready(function(){ // 컬럼 정의 (입고품목 상세 기준) - 신규 // ===================================================== var columns = [ + {formatter:"rowSelection", titleFormatter:"rowSelection", hozAlign:"center", headerSort:false, width:40, frozen:true}, {headerHozAlign:'center', hozAlign:'center', minWidth:80, widthGrow:1, title:'검사일', field:'INSPECTION_DATE', frozen: true, sorter: "string"}, {headerHozAlign:'center', hozAlign:'center', minWidth:70, widthGrow:1, title:'검사자', field:'INSPECTOR_NAME', frozen: true}, {headerHozAlign:'center', hozAlign:'center', minWidth:105, widthGrow:1, title:'품의서 No', field:'PROPOSAL_NO', frozen: true}, diff --git a/WebContent/WEB-INF/view/quality/processInspectionFormPopUp.jsp b/WebContent/WEB-INF/view/quality/processInspectionFormPopUp.jsp index 3c72c75..69db83d 100644 --- a/WebContent/WEB-INF/view/quality/processInspectionFormPopUp.jsp +++ b/WebContent/WEB-INF/view/quality/processInspectionFormPopUp.jsp @@ -44,6 +44,8 @@ String connector = person.getUserId(); .inspection-ok { color: #28a745; font-weight: bold; } /* 공통에서 추가되는 초기화, Excel Download 버튼 숨기기 */ .resetBtn, .excelBtn { display: none !important; } + /* select2 드롭다운이 Tabulator 그리드 위에 표시되도록 */ + .select2-container--open .select2-dropdown { z-index: 99999 !important; }