/* *
*/ // 현재 페이지 번호를 알수있는 변수 var currentPage; // 현재 그리드 총 데이터 수 var gridTotalCount; // 23.12.13 최연희 추가 - _saveCurrentGrid 옵션용 전역변수 var checkData = []; // 선택한 row data var scrollPosition; // 스크롤 위치 var currentGridPage; // 현재 그리드 페이지 //그리드 생성시 실행 function EcoGrid_jqx(id, colModel, data, option) { var jqx_datafields = []; var keycol = ""; //name for(var i in colModel){ var row = {}; //formatter에 따라 type 변경 if(colModel[i].formatter == "currency" || colModel[i].sorttype=='int'){ row.name = colModel[i].name; row.type = 'number'; }else if(colModel[i].formatter == "date"){ row.name = colModel[i].name; row.type = 'date'; }else{ row.name = colModel[i].name; row.type = 'string'; } jqx_datafields.push(row); } var columns = []; //2018.01.30 추가 - 순번 항목. rownumbers : true 이면 그리드 첫번째 column에 순번 부여 //20.04.20 대출반납 화면 그리드일때는 색상부여때문에 class 추가. if(option.rownumbers == true) { columns.push({ text: 'No', datafield: 'No', width: 40, columntype: 'number', align:'center',sortable: false, cellsrenderer: function(row,column,value) { return "
" + (value+1) + "
"; } }); if(option.cellclassname != undefined && option.cellclassname != null && option.cellclassname != "" && columns[0] != undefined && columns[0] != null && columns[0] != "" ){ columns[0].cellclassname = option.cellclassname } } // 선정된 정보를 최상단으로 올릴지 여부 if(option.selectDataTop == true){ columns.push({ text: '선정후정렬값', datafield: 'orderByNum', width: 40, columntype: 'string', align:'center',sorttype:'number', hidden:true} ); } for(var j in colModel){ var col = {}; col["datafield"] = colModel[j].name; col["text"] = colModel[j].label; col["cellsalign"] = colModel[j].align; // cell정렬 col["width"] = colModel[j].width || 70; col["cellclassname"] = colModel[j].cellclassname; if(colModel[j].key != undefined){ col["key"] = colModel[j].key; keycol = colModel[j].name; } if(colModel[j].hidden != undefined){ col["hidden"] = colModel[j].hidden; col["cellsalign"] =""; col["width"] = ""; } //formatter 변형 //가격 formatter if(colModel[j].formatter == "currency"){ col["cellsformat"] = "n2"; //날짜 }else if(colModel[j].formatter == "date"){ col["cellsformat"] = "yyyy/MM/dd"; } col["align"] = "center"; // header 정렬 col["cellsrenderer"] = colModel[j].cellsrenderer; //코드 formatter if(colModel[j].formatter!= undefined && colModel[j].formatter != "currency" && colModel[j].formatter != "date"){ var formatter = colModel[j].formatter; var cellsrenderer = function (row, columnfield, value, defaulthtml, columnproperties) { //cellsrenderer를 선언 if(col["datafield"] == columnfield ){ return formatter(value); // 필요한 변수를 다시 넣어준다. } } col["cellsrenderer"] = colModel[j].formatter; } //전체컬럼적용 if(option.cellclassname != undefined && option.cellclassname != null && option.cellclassname != ""){ col["cellclassname"] = option.cellclassname; } columns.push(col); } //필수옵션 this._gridid = id; this._grid_class = option.grid_class; //생성된 그리드명 this._pagination_id = option.pagination_id; this._colModel = colModel; this._data = data; this._width = option.width || null; this._height = option.height || 400; this._rowNum = option.rowNum; this._keycol = keycol; this._sort_field = option.sort_field || ''; this._sort_option = option.sort_option || ''; this.save_sort_field = option.sort_field || ''; this.save_sort_option = option.sort_option || ''; this.selectDataTop = option.selectDataTop || false; this._page = option.page || 0; this._jqx_datafields = jqx_datafields; this._jqx_columns = columns; this._pagingType = option.pagingType || "grid_type"; //보여줄 페이징 타입 (그리드자체페이징(grid_type), 페이징 분리(init_type)) this._gridPaging = option.gridPaging || false; // 페이징 유(true) 무(false) this._editable = option.editable || false; // 페이징 유(true) 무(false) this._groupable = option.groupable || false; // 그룹 유무 this._groupables = option.groupables || []; // 그룹으로 묶을 컬럼 this._rowdetails = option.rowdetails || false; // rowdetail 여부 this._rowdetailstemplate = option.rowdetailstemplate || null; // rowdetail 템픞릿 this._initrowdetails = option.initrowdetails || null; // rowdetail 초기화 // 드리드 설정을 저장해 놓은 정보가 있는지 확인해서 적용한다. // 2019/09/24 권명호 // 24.03.20 최연희 - 페이징건수 설정값도 적용하도록 수정 const savedSetting = this.getCurrentPageSetting(); // 저장해놓은 그리드 설정 객체 if(savedSetting && Object.keys(savedSetting).length !== 0) { let savedColArr = []; // 설정 저장해놓은 컬럼 배열 // savedSetting 이 객체로 넘어오는 경우와 컬럼 배열 형태(기존 저장형태)로 넘어오는 경우가 있다 if(savedSetting.hasOwnProperty("columns")) savedColArr = savedSetting.columns; else savedColArr = savedSetting; // 기존 정보를 표기시 index 가 0부터 표기되는 문제 해결을 위해 추가함 // 2020/09/07 권명호 for(var index in savedColArr) { var one_temp = savedColArr[index]; if(one_temp.text == "No") { one_temp.cellsrenderer = function(row,column,value) { return "
" + (value+1) + "
";}; break; } } let orderByNum_flag = false; for(var index in savedColArr) { var one_temp = savedColArr[index]; if(one_temp.text == "선정후정렬값"){ orderByNum_flag = true; break; } } if(orderByNum_flag == false){ // 선정된 정보를 최상단으로 올릴지 여부 // 저장된 그리드에는 강제로 추가하도록 수정 if(option.selectDataTop == true){ savedColArr.push({ text: '선정후정렬값', datafield: 'orderByNum', width: 40, columntype: 'string', align:'center',sorttype:'number', hidden:true} ); } } // 24.11.21 최연희 - 소스상 컬럼 변동(삭제/추가/변경)이 있을 경우 반영하여 컬럼 설정값 업데이트 let isChanged = false; // 변동 있는지 여부 // 사용자가 저장한 컬럼 설정의 datafield 와 index(컬럼 순서) 매핑 const sortCol = savedColArr.reduce((acc, cur, idx) => { acc[cur.datafield] = idx; return acc; }, {}); // 소스 컬럼을 사용자가 저장한 컬럼의 순서대로 정렬 columns.sort((a, b) => { if(sortCol[a.datafield] === undefined || sortCol[b.datafield] === undefined) { isChanged = true; } const indexA = sortCol[a.datafield] !== undefined ? sortCol[a.datafield] : columns.findIndex(col => col.datafield === a.datafield) const indexB = sortCol[b.datafield] !== undefined ? sortCol[b.datafield] : columns.findIndex(col => col.datafield === b.datafield) return indexA - indexB; }); // 변경사항이 있다면 반영한 컬럼 리스트로 업데이트한다 if(isChanged) { const option_save_location = getViewOptionData_value('그리드 설정 DB 저장',CURRENT_MANAGE_CODE); const url_split = getCurrentPageUrl(); let saveObj = {}; saveObj.columns = columns; saveObj.row_num = savedSetting.row_num; if(url_split) { // db 저장 if(option_save_location === 'Y') { saveObj.grid_location = url_split+ '_' + this._grid_class; com_layoutUpdate('grid_property', JSON.stringify(saveObj), ''); } else { // 로컬 저장 localStorage.setItem(url_split+ '_' + this._grid_class, JSON.stringify(saveObj)); } } this._jqx_columns = columns; } else { // 변경 사항 없다면 기존 저장된 컬럼 리스트 로드 this._jqx_columns = savedColArr; } // 페이징 건수 저장값이 존재한다면 해당 값으로 페이징 건수 설정 if(savedSetting.hasOwnProperty('row_num')) this._rowNum = savedSetting.row_num; } // 단일체크 , 멀티체크 설정 var selectionmode = ""; if(option.multiselect == false || option.multiselect == undefined ) { selectionmode = "singlerow"; } else{ selectionmode = "checkbox"; } this._selectionmode = selectionmode; //2018.01.10 추가 - 정렬 후에도 상태별 색상 유지 this._sortEvent = option.sortEvent || undefined; this._loadComplete = option.loadComplete || undefined; // 23-10-12 김요한 resizing 옵션 추가 this._resizing = option.resizing || false; //그외옵션 this._global_call; this._pageCallBack = option.pageCallBack || undefined; // 추가옵션 this._ondblClickRow = option.ondblClickRow || undefined; // 그리드 row 더블 클릭시 실행할 함수 this._onSelectRow = option.onSelectRow || undefined; // 그리드 row 클릭시 실행할 함수 this._onSelectAll = option.onSelectAll || undefined; // 그리드 row 클릭시 실행할 함수 this._onCellSelect = option.onCellSelect || undefined; // 그리드 row 클릭시 실행할 함수 this._onSelectRowChange = option.onSelectRowChange || undefined; // 그리드 row 클릭시 실행할 함수 //2017.12.19 추가 옵션 : 브라우저의 텍스트 선택을 사용 가능하게 합니다. 드래그 가능하게 해주는 옵션. 데이터 선택 > 우클릭 > 복사해서 사용해야함. this._enablebrowserselection = true; // 페이징 유무에따른 스크롤 처리 if(this._gridPaging==true){ this._scroll = false; // 페이징 유(true) - 스크롤무(false) }else{ this._scroll = true; } //클릭옵션 this._clickOption(this); //헤더정렬 this._sortCol(this); // 23.12.13 최연희 추가 - 그리드 체크된 데이터 및 스크롤 위치 기억 this._saveCurrentGrid = false; //생성시 데이터 같이 세팅 작동 추가 23/10/31 김길준 작업 if(this._data){ this._gridTypePrint(this._data,this); }else{ this._gridTypePrint('',this); } } /** * 실제 그리드를 그릴때 실행되는 함수 * * @param 추가옵션 data : 그리드를 그릴때 매핑할 데이터 * @param 추가옵션 page : 페이지 * @param 추가옵션 sort_field : 정렬필드명 * @param 추가옵션 sort_option : 정렬옵션 (asc/desc) * @param 추가옵션 totalCount : 데이터의 총 수 */ //실제 그리드 그리기 + 추가옵션 재정리 + 그리드 타입에따른 그리드 선택 EcoGrid_jqx.prototype._gridTypePrint = function(data,option){ // 추가옵션 this._data = data; this._page = option.page || 0; this._sort_field = option.sort_field || ""; this._sort_option = option.sort_option || ""; // 24.07.29 최연희 - 그리드 커스텀 css 추가 this._customCss = option.customCss || undefined; // 24-01-23 김요한 간헐적인 필터 참조 오류 현상 방지를 위해 추가. this._filterable = option.filterable === false ? false : true; // 정렬값 유지를 위해 추가함 // 2020/02/20 권명호 var sortcolumn = $(this._gridid).jqxGrid('getsortinformation'); this.save_sort_option = ""; this.save_sort_field = ""; if(undefined != sortcolumn && null != sortcolumn) { var temp_sortmode = $(this._gridid).jqxGrid('sortmode'); if(undefined != temp_sortmode && null != temp_sortmode && temp_sortmode == 'many') { temp_sortmode = 'many'; } else { temp_sortmode = 'one'; } if(temp_sortmode == 'many' && sortcolumn.sortcolumns.length >= 1) { for(var index in sortcolumn.sortcolumns) { var temp_sort_info = sortcolumn.sortcolumns[index]; if(index == 0) { this.save_sort_field = temp_sort_info.dataField; if(temp_sort_info.ascending == true) { this.save_sort_option = "asc"; } else { this.save_sort_option = "desc"; } } else { this.save_sort_field += "," + temp_sort_info.dataField; if(temp_sort_info.ascending == true) { this.save_sort_option += "," + "asc"; } else { this.save_sort_option += "," + "desc"; } } this._sort_option = ""; this._sort_field = ""; } } else { if(null != sortcolumn.sortcolumn && sortcolumn.sortcolumn != "") { this.save_sort_field = sortcolumn.sortcolumn; if(sortcolumn.sortdirection.ascending == true) { this.save_sort_option = "asc"; } else { this.save_sort_option = "desc"; } this._sort_option = ""; this._sort_field = ""; } } // console.log(this._sort_option); // console.log(this._sort_field); // // console.log(this.save_sort_field); // console.log(this.save_sort_option); // // var sor_option_check = ("#"+this._grid_class+'_grid_sort_option'); // // if(sor_option_check.checked == true) // { // $(this._gridid).jqxGrid({ sortable: true, sortmode: 'many'}); // } // else // { // $(this._gridid).jqxGrid({ sortable: true, sortmode: 'one'}); // } } if(option.totalCount != undefined){ this._totalCount = option.totalCount; }else { if(data != undefined) { this._totalCount = data.length ; } else { this._totalCount = 0; } } //페이징 타입에따른 그리드 분리 if(this._pagingType == "grid_type" || this._pagingType == undefined){ //그리드 페이징 this._gridPrint(this); }else{ this._gridPrint(this); //페이징 분리 //this._gridPrintDivision(this._sort_field,this._sort_option, this); } } EcoGrid_jqx.prototype._gridPrint = function(obj){ var source = { datafields:obj._jqx_datafields, datatype: "array", sortcolumn: this._sort_field, sortdirection: this._sort_option }; // 정렬시에는 체크한 내용이 남아있고 다시 그릴댄 체크박스를 해지한다. if(obj._selectionmode == 'checkbox') { //20.01.09 이현주 수정 - 탭 이동 시 그려지지않은 그리드에 대해서 오류가 나서 수정. var selectedData = $(obj._gridid).jqxGrid('getselectedrowindexes'); if (selectedData != undefined && selectedData.length > 0) { $(obj._gridid ).jqxGrid('clearselection'); } } if(obj._data != ""){ //data가 없는상태로 넣으면은 빈row가 생긴다. 방법1은 ""일경우엔 넣지 않거나 ready: function() { $("#jqxgrid").jqxGrid('clear'); }, 지우는 방법이 있다. source.localdata = obj._data } // jqxTooltip 이준영 ************************** var cellhover = function (element){ if (element.className.includes('cut_tooltip')) { let target = element.firstElementChild; //23.03.14 배미경 text가 길 경우만 툴팁 나오도록 수정. 분기 일부 수정 if(target.offsetWidth < target.scrollWidth){ $(element).jqxTooltip({ content: element.innerText }); var offset = $(element).offset(); $(element).jqxTooltip('open', offset.left + 5, offset.top + 35); }else{ $('.cut_tooltip').jqxTooltip('destroy'); } } } // ****************************** var dataAdapter = new $.jqx.dataAdapter(source, { loadComplete: function (data) { obj._gridComplete(obj) if(undefined != obj._loadComplete) { obj._loadComplete(); } }, bindingcomplete: function (data) { console.log('com_bindingcomplete'); }, loadError: function (xhr, status, error) {/*console.log("loadError");*/} }); var pagerrenderer = function () { var element = $("
"); return element; } // 다중 정렬을 유지하기 위해 추가함 // 2020/02/20 권명호 var temp_sortmode = $(this._gridid).jqxGrid('sortmode'); var temp_selectionmode = $(this._gridid).jqxGrid('selectionmode'); if(undefined != temp_sortmode && null != temp_sortmode && temp_sortmode == 'many') { temp_sortmode = 'many'; } else { temp_sortmode = 'one'; } $(obj._gridid).jqxGrid( { pageable: obj._gridPaging,// 페이징여부 pagerrenderer: pagerrenderer, //pagesizeoptions: ['10', '20', '30', '40', '50'], pagesize:obj._rowNum, sortable: true, //헤더클릭시 정렬 sortmode: temp_sortmode, // 다중 정렬을 위한 설정값 showsortmenuitems: false, //sort메뉴 활성화 showemptyrow: false,//그리드가 빈값일때 안내글 여부 selectionmode:obj._selectionmode, columnsresize: true, //그리드에서 컬럼 사이즈 조절여부 columnsreorder: true, filterable: obj._filterable, columnsheight: 30, rowsheight: 30, height: obj._height, width: obj._width, source: dataAdapter, columns: obj._jqx_columns, editable: obj._editable, // groupable: obj._groupable, // groups : obj._groupables, cellhover: cellhover, rowdetails: obj._rowdetails, rowdetailstemplate: obj._rowdetailstemplate, initrowdetails: obj._initrowdetails, keyboardnavigation: false, //23.06.27 ctrl + c 사용 위해 해당 옵션 해제 //2017.12.19 추가 옵션 : 브라우저의 텍스트 선택을 사용 가능하게 합니다. 드래그 가능하게 해주는 옵션. 데이터 선택 > 우클릭 > 복사해서 사용해야함. enablebrowserselection : obj._enablebrowserselection, localization: { // 필터 검색의 한글화를 위해 추가함 2020/08/19 권명호 filtershowrowstring: "검색:", sortascendingstring: "내림차순", sortdescendingstring: "오름차순", sortremovestring: "초기화", filterorconditionstring: "또는", filterandconditionstring: "그리고", filterstringcomparisonoperators: ['공백', '공백 아님', '포함', '포함(대소문자 일치)', '미포함', '미포함(대소문자 일치)', '시작문자', '시작문자(대소문자 일치)', '끝문자', '끝문자(대소문자 일치)', '일치', '일치(대소문자 일치)', 'null', 'not null' ], filterclearstring: "취소", filterstring: "검색" } }); // grid resize // 23-10-12 김요한 브라우저 크기에 맞게 메인 컨테이너 그리드의 크기 조절 const main_container_selector = 'main > .metis_container'; const root_jqx_element = document.getElementById(`${obj._gridid.slice(1)}`); const content_jqx_element = document.getElementById(`content${obj._gridid.slice(1)}`); const vertical_scroll_bar_jqx_element = document.getElementById(`verticalScrollBar${obj._gridid.slice(1)}`); const pager_jqx_element = document.getElementById(`pager${obj._gridid.slice(1)}`); if (obj._resizing) { const width_diff = $(main_container_selector).width() - obj._width; const height_diff = $(window).height() - obj._height; const vertical_scroll_empty_space = 2; const resizingEventHandler = () => { // 한 페이지에 여러 탭이 있고 각 탭마다 그리드가 존재하는 경우 하나의 그리드에만 resize가 적용되어서 추가함. const grid_parent_tab_pane = document.querySelector(`${obj._gridid}`).closest('.tab-pane'); const active_className = 'active'; let is_added_className = false; const is_exist_active_class = grid_parent_tab_pane ? grid_parent_tab_pane.classList.contains(active_className) : false; if (grid_parent_tab_pane && !is_exist_active_class) { grid_parent_tab_pane.classList.add(active_className); is_added_className = true; } if (typeof obj._width === 'number') { const resize_width = $(main_container_selector).width() - width_diff; obj._width = resize_width; } if (typeof obj._height === 'number') { const resize_height = $(window).height() - height_diff; obj._height = resize_height; } $(obj._gridid).jqxGrid({ width: obj._width, height: obj._height, }); // 세로 스크롤바 여부에 따라 width 조절 const is_visible_vertical_scroll = vertical_scroll_bar_jqx_element.style.visibility === 'visible'; // jqxGrid의 content id를 가진 요소의 width의 크기가 root 요소의 width와 2px만큼 차이나게 되는 현상 존재 content_jqx_element.style.width = is_visible_vertical_scroll ? `${Number(root_jqx_element.style.width.replace('px', '')) - Number(vertical_scroll_bar_jqx_element.style.width.replace('px', '')) - vertical_scroll_empty_space}px` : root_jqx_element.style.width; content_jqx_element.style.height = `${Number(root_jqx_element.style.height.replace('px', '')) - Number(pager_jqx_element.style.height.replace('px', ''))}px`; if (is_added_className) { grid_parent_tab_pane.classList.remove(active_className); is_added_className = false; } } const registerEvent = () => { // 만일 root요소에 해당 클래스명이 있으면 리턴 if (root_jqx_element.classList.contains('register-resizing-event')) return; root_jqx_element.classList.add('register-resizing-event'); // 이벤트 핸들러 등록 window.addEventListener('resize', throttle(resizingEventHandler, 100)); } registerEvent(); } // grid resize 끝 // 기존 선택 방식이 다중선택이면 이를 유지하기 위함 if(temp_selectionmode == 'multiplerowsextended') { $(obj._gridid).jqxGrid('selectionmode', 'multiplerowsextended'); $(obj._gridid).jqxGrid('enablebrowserselection', false); $(obj._gridid).jqxGrid({ enablehover: true}); } //헤더색 - jqx.base.css 에서 .jqx-widget-header 에서 변경해주니 깔끔하게 변경 // 19.10.07 jiyeong jqx그리드 경계선 추가 $('.jqx-clear.jqx-overflow-hidden.jqx-position-absolute.jqx-border-reset.jqx-background-reset.jqx-reset').removeClass('jqx-border-reset'); $('.jqx-clear.jqx-overflow-hidden.jqx-position-absolute.jqx-background-reset.jqx-reset').removeClass('jqx-reset'); // 우측경계선 //정렬을 진행한다. // sortcolumn: obj._sort_field, // sortdirection: obj._sort_option // 선택된 정보 최상단으로 울리는 옵션이 추가된 경우 if(this.selectDataTop == true && obj._data != ""){ var sortinformation = $(this._gridid).jqxGrid('getsortinformation'); $(this._gridid).jqxGrid('removesort'); $(this._gridid).jqxGrid('sortby', 'orderByNum','desc'); }else{ var array_sort_field = obj.save_sort_field.split(","); var array_sort_option = obj.save_sort_option.split(","); for(var index in array_sort_field) { var one_sort_field = array_sort_field[index]; var one_sort_option = array_sort_option[index]; if("" != one_sort_field && "" != one_sort_option) { $(obj._gridid).jqxGrid('sortby', one_sort_field, one_sort_option); } } } // _gridPrint() 호출될 때 content 영역의 높이 조정 if (obj._resizing) { content_jqx_element.style.height = `${Number(root_jqx_element.style.height.replace('px', '')) - Number(pager_jqx_element.style.height.replace('px', ''))}px`; } // 23.12.13 최연희 추가 - _saveGridData() 에서 저장한 데이터로 기존 데이터(특정 작업에 사용한 데이터) 체크 처리 및 스크롤 위치 세팅 if(obj._saveCurrentGrid) { // 현재 그리드 데이터에서 key 컬럼의 value만 추출해 새로운 배열 생성 const keyColVal = (obj._data).map(x => x[obj._keycol]); // checkData(저장한 데이터)와 keyColVal(현재 데이터)의 교집합인 데이터 필터링 // => 일괄변경이 아닌 개별변경 작업일 경우 checkData(저장한 데이터)가 keyColVal(현재 데이터)에 존재하지 않는 경우가 있을 수 있기 때문 const filteredDataList = checkData.filter(x => keyColVal.includes(x[obj._keycol])); // 페이징 분리일 경우 if(currentGridPage > 1) { obj._goSelectedPage(obj._gridid,currentGridPage+''); } // 선택한 데이터 체크 유지 filteredDataList.forEach(function(el) { obj.setSelection(el[obj._keycol]); }) // 작업 이전의 스크롤 위치값(scrollPosition)으로 현재 스크롤 세팅 $(obj._gridid).jqxGrid('scrolloffset', scrollPosition, 0); checkData, scrollPosition, currentGridPage = null; // 초기화 obj._saveCurrentGrid = false; // 초기화 } } //그리드정렬 EcoGrid_jqx.prototype._sortCol = function(obj){ $(obj._gridid).on("sort", function (event) { obj._page = 1; // 헤더클릭 정렬시 페이지를 1페이지로 이동을 위해 $(obj._gridid).jqxGrid('gotopage', (obj._page-1)); obj._gridComplete(obj); // 정렬시에는 체크한 내용이 남아있고 다시 그릴댄 체크박스를 해지한다. // 2019/12/26 권명호 주석처리함(미추홀 요구사항) // if(obj._selectionmode == 'checkbox') // { // $(obj._gridid ).jqxGrid('clearselection'); // } if(obj._sortEvent != undefined) { obj._sortEvent(); } }); }; //그리드가 그려진 후 페이징 유/무 선택 EcoGrid_jqx.prototype._gridComplete = function(obj){ if(obj._gridPaging==true){ //페이징 유 $(obj._pagination_id).show(); obj._TotalRowInPagination(obj); obj._initPaging(obj); }else if(obj._gridPaging==false){ //페이징 무 $(obj._pagination_id).hide(); obj._TotalRowInPagination(obj); } // $('.ui-jqgrid-bdiv').perfectScrollbar(); }; //그리드 클릭 옵션 EcoGrid_jqx.prototype._clickOption = function(obj){ if(obj._ondblClickRow != undefined || obj._ondblClickRow != null){ obj._jqxOndblClickRow(obj); } if(obj._selectionmode == "checkbox"){ obj._jqxOnSelectRow(obj); obj._jqxOnCellSelect(obj); } else { if(obj._jqxOnSelectRow != undefined || obj._jqxOnSelectRow != null){ obj._jqxOnSelectRow(obj); } } if(obj._onSelectAll != undefined){ obj._jqxOnSelectAll(obj); } }; /**************************************************************************************************************** 클릭옵션**************/ //그리드 row 더블 클릭시 실행할 함수 EcoGrid_jqx.prototype._jqxOndblClickRow = function (obj){ $(obj._gridid).on("rowdoubleclick", function (event) { if (!event.args.originalEvent.shiftKey) { // shift누른 상태에서 이벤트가 발생해서 추가함 2020/11/03 권명호 var rowId = event.args.rowindex; // 이 contents 값은 undefined인데 무엇을 위해 있는건지 ..? var contents = obj.getRowidData(rowId); /*2018.08.22 by 박아름 추가*/ var bounddata = event.args.row.bounddata; obj._ondblClickRow(contents,bounddata); } }); } //선정된 건수 표기 EcoGrid_jqx.prototype._jqxOnSelectCntView = function (obj){ var rowindexes = $(obj._gridid).jqxGrid('getselectedrowindexes'); //20.01.30 - grid_select_cnt 중복 방지위해서 grid_class 추가 $('#'+obj._grid_class+'grid_select_cnt').text(rowindexes.length); } //그리드 row 클릭시 실행할 함수 EcoGrid_jqx.prototype._jqxOnSelectRow = function (obj){ var rowid_col = this._keycol; $(obj._gridid).off("rowclick"); $(obj._gridid).on("rowclick", function (event) { var rowId = event.args.rowindex; var rowdata = event.args.row.bounddata; var rowid = rowdata[rowid_col]; if(obj._onSelectRow != undefined){ // var contents = obj.getRowidData(rowId); // obj._onSelectRow(contents); obj._onSelectRow(rowdata,rowid); } // var rowId = event.args.rowindex; // console.dir("1rowId["+rowId+"]"); // if(obj._onSelectRow != undefined){ // var contents = obj.getRowidData(rowId); // obj._onSelectRow(contents); // } // if(obj._selectionmode == "checkbox"){ // $(obj._gridid ).jqxGrid('selectrow',rowId); // } }); $(obj._gridid).on("rowselect", function (event) { if(obj._selectionmode == "checkbox"){ var args = event.args; // row's bound index. var rowBoundIndex = args.rowindex; // 다중선택일 경우는 추가 작업이 필요하여 추가함 // 2020/09/21 권명호 var selection_mode_temp = $(obj._gridid).jqxGrid('selectionmode'); if(selection_mode_temp == 'multiplerowsextended') { $(this).jqxGrid('selectrow', rowBoundIndex); } obj._jqxOnSelectCntView(obj); } if(obj._onSelectRowChange != undefined){ // var contents = obj.getRowidData(rowId); // obj._onSelectRow(contents); obj._onSelectRowChange('select'); } }); $(obj._gridid).on("rowunselect", function (event) { if(obj._selectionmode == "checkbox"){ var rowindexes = $(this).jqxGrid('getselectedrowindexes'); $('#'+obj._grid_class+'grid_select_cnt').text(rowindexes.length); if(this.selectDataTop == true){ } } if(obj._onSelectRowChange != undefined){ // var contents = obj.getRowidData(rowId); // obj._onSelectRow(contents); obj._onSelectRowChange('unselect'); } }); } //Cell시 발생 EcoGrid_jqx.prototype._jqxOnCellSelect = function (obj){ $(obj._gridid).off("cellclick"); $(obj._gridid).on("cellclick", function (event) { var rowindexes = $(obj._gridid).jqxGrid('getselectedrowindexes'); var rowId = event.args.rowindex; if(obj._onCellSelect != undefined){ var index = event.args.columnindex; var contents = event.args.value; obj._onCellSelect(rowId,index,contents); } var rowData = []; if(obj._selectionmode == "checkbox"){ var unselectrowid; for(var i in rowindexes){ if(rowindexes[i]==rowId){ $(obj._gridid).jqxGrid('unselectrow',rowId); unselectrowid = rowId; break; } } if(unselectrowid == undefined){ $(obj._gridid).jqxGrid('selectrow',rowId); } } }); } //전체선택시 발생 EcoGrid_jqx.prototype._jqxOnSelectAll = function (obj){ $(obj._gridid ).on('rowselect', function (event) { var rowsCount = $(obj._gridid ).jqxGrid('getrows').length; if (event.args.rowindex.length === rowsCount) { obj._onSelectAll(obj.gridRowData()); } }); } // 페이지 사이즈 변경시 EcoGrid_jqx.prototype.pageSizeOptionChange = function(evt,obj) { var keyCode = evt.which?evt.which:event.keyCode; if(keyCode != '13') { return; } else { $(this._gridid).jqxGrid('pagesize', Number(obj.value)); this._rowNum = Number(obj.value); $(this._pagination_id).show(); this._TotalRowInPagination(this); this._initPaging(this); } } // 23.08.09 최연희 수정 - 팝업에 다시보지않기 설정 추가 // 다중선택 선택시 EcoGrid_jqx.prototype.multi_select_check = function(obj) { // 기본을 전체 체크 해지 $(this._gridid).jqxGrid('clearselection'); // '다시보지않기' 옵션 활성화 여부 const gridSelectOptionSkipYN = localStorage.getItem(this._grid_class+'_grid_select_option_skip_yn'); if(obj.checked == true) { // 다시보지않기 옵션이 Y면 알림창 띄우지 않고 다중선택 활성화시킴 if(gridSelectOptionSkipYN === 'Y') { multiSelect(this); } else { const self = this; openMessagePopup({ title : "알림", msg : "다중선택은 shift를 누른상태로 시작과 끝을 선정하거나
ctrl + 드래그로 다중 선정하는 기능입니다.

단 체크박스 등으로 선정하거나 정렬시
선정 건수의 문제는 있을수 있습니다.", btn1_text : "적용", btn1_function: function(e) { multiSelect(self); }, btn2_text : "취소", btn2_function: function(e) { obj.checked = false; singleSelect(self); }, btn3_text : "다시보지않기", btn3_function: function(e) { localStorage.setItem(self._grid_class+'_grid_select_option_skip_yn','Y'); multiSelect(self); } }); } } else { singleSelect(this); } function multiSelect(obj) { $(obj._gridid).jqxGrid('selectionmode', 'multiplerowsextended'); $(obj._gridid).jqxGrid('enablebrowserselection', false); $(obj._gridid).jqxGrid({ enablehover: true}); } function singleSelect(obj) { $(obj._gridid).jqxGrid('selectionmode', 'checkbox'); $(obj._gridid).jqxGrid('enablebrowserselection', true); $(obj._gridid).jqxGrid({ enablehover: true}); } } // 다중정렬 선택시 EcoGrid_jqx.prototype.multi_sort_check = function(obj) { if(obj.checked == true) { $(this._gridid).jqxGrid({ sortable: true, sortmode: 'many'}); var sortcolumn = $(this._gridid).jqxGrid('getsortinformation'); $(this._gridid).jqxGrid('removesort'); // 기존 정렬을 유지하면서 하려고 했으나 이상해서 수정함 // var sortcolumn = $(this._gridid).jqxGrid('getsortinformation'); // if(sortcolumn.sortcolumns.length >= 1) // { // var sort_temp_data = sortcolumn.sortcolumns[sortcolumn.sortcolumns.length-1]; // var sort_away = ""; // // if(sort_temp_data.ascending == true) // { // sort_away = "asc"; // } // else // { // sort_away = "desc"; // } // // $(this._gridid).jqxGrid('removesort'); // // console.log("["+sort_temp_data.dataField+"]["+sort_away+"]"); // // $(this._gridid).jqxGrid('sortby', sort_temp_data.dataField, sort_away); // } } else { $(this._gridid).jqxGrid({ sortable: true, sortmode: 'one'}); $(this._gridid).jqxGrid('removesort'); } } // 그리드 저장 및 초기화 기본 함수 EcoGrid_jqx.prototype.save_grid_setting_getdata = function(division) { var current_this = this; var url_split = getCurrentPageUrl(); var save_col_data = {}; var save_col_datas = []; save_col_data.grid_location = url_split+ '_' + current_this._grid_class; save_col_data.columns = current_this._jqx_columns; save_col_data.row_num = current_this._rowNum; // 페이징 건수 // 기존 저장된 정보 추출 var saved_local_data = com_Getlayout('grid_property'); var if_same_grip_falg = false; if(undefined != saved_local_data && null != saved_local_data && '' != saved_local_data) { saved_local_data = JSON.parse(saved_local_data); } else { saved_local_data = []; } if(saved_local_data.length > 0) { for(var index in saved_local_data) { var one = saved_local_data[index]; // 기존 저장된 설정들 중에 현재 수정하고자 하는 대상(grid_location)의 설정이 있으면 현재 수정값으로 기존값을 덮어씌운다. if(one.grid_location == url_split+ '_' + current_this._grid_class) { // 설정 저장 if(division == 'UPDATE') { // 24.03.20 최연희 - 페이징 건수도 저장하도록 수정 let saveObj = {}; saveObj.grid_location = save_col_data.grid_location; // 그리드 경로 saveObj.columns = save_col_data.columns; // 컬럼 saveObj.row_num = save_col_data.row_num; // 페이징 건수 save_col_datas.push(saveObj); if_same_grip_falg = true; } // 설정 초기화 if(division == 'DELETE') { // 초기화인 경우 추가하지 않고 넘어간다. continue; } } else // 저장되어 있는 다른 grid_location의 설정들은 그대로 저장한다. { // 24.03.20 최연희 - 페이징 건수도 저장하도록 수정 let saveObj = {}; saveObj.grid_location = one.grid_location; saveObj.columns = one.columns; if(one.hasOwnProperty("row_num")) saveObj.row_num = one.row_num; save_col_datas.push(saveObj); } } } // 기존 설정중에 현재 저장하려고 하는 grid_location 에 해당하는 값이 없을시 신규 추가 if(if_same_grip_falg == false && division == 'UPDATE') { // 24.03.20 최연희 - 페이징 건수도 저장하도록 수정 let saveObj = {}; saveObj.grid_location = save_col_data.grid_location; saveObj.columns = save_col_data.columns; saveObj.row_num = save_col_data.row_num; save_col_datas.push(saveObj); } return save_col_datas; } // 그리드 설정 저장 클릭시 EcoGrid_jqx.prototype.save_grid_setting = function() { var option_save_location = getViewOptionData_value('그리드 설정 DB 저장',CURRENT_MANAGE_CODE); if(undefined != option_save_location && null != option_save_location && '' != option_save_location && 'Y' == option_save_location) { var current_this = this; openMessagePopup({ title : "알림", msg : '그리드의 현재 순서 및 페이징 건수를 관리합니다.
해당 설정은 다른 PC에서도 동일하게 적용됩니다.', btn1_text : "저장", btn1_function: function(e) { var save_col_datas = current_this.save_grid_setting_getdata('UPDATE'); com_layoutUpdate('grid_property', JSON.stringify(save_col_datas)); }, btn2_text : "컬럼설정", btn2_function: function(e) { $(current_this._gridid).jqxGrid('openColumnChooser'); }, btn3_text : "초기화", btn3_function: function(e) { var save_col_datas = current_this.save_grid_setting_getdata('DELETE'); com_layoutUpdate('grid_property', JSON.stringify(save_col_datas),function(){window.location = window.location}) // 다중선택 '다시보지않기' 옵션 초기화 const gridSelectOptionSkipYN = localStorage.getItem(current_this._grid_class+'_grid_select_option_skip_yn'); if(gridSelectOptionSkipYN === 'Y') { localStorage.removeItem(current_this._grid_class+'_grid_select_option_skip_yn'); } // Message_callback('그리드 설정이 초기화 되었습니다.',function(){window.location = window.location}); }, }); } else // 기본 방식은 local에 저장한다. { var current_this = this; openMessagePopup({ title : "알림", msg : '그리드의 현재 순서 및 페이징 건수를 관리합니다.
각 설정은 현재 PC 기준으로 저장이 됩니다.', btn1_text : "저장", btn1_function: function(e) { var url_split = getCurrentPageUrl(); // 24.03.20 최연희 - 페이징 건수도 저장하도록 수정 let saveObj = {}; if(url_split) { saveObj.columns = current_this._jqx_columns; saveObj.row_num = current_this._rowNum; localStorage.setItem(url_split+ '_' + current_this._grid_class, JSON.stringify(saveObj)); onlyMessage('그리드 설정이 저장되었습니다.'); return; } else { onlyMessage('현재 페이지 정보를 찾을수 없습니다.'); return; } }, btn2_text : "컬럼설정", btn2_function: function(e) { $(current_this._gridid).jqxGrid('openColumnChooser'); }, btn3_text : "초기화", btn3_function: function(e) { var url_split = getCurrentPageUrl(); localStorage.setItem(url_split+ '_' + current_this._grid_class, ''); Message_callback('그리드 설정이 초기화 되었습니다.',function(){window.location = window.location}); // 다중선택 '다시보지않기' 옵션 초기화 const gridSelectOptionSkipYN = localStorage.getItem(current_this._grid_class+'_grid_select_option_skip_yn'); if(gridSelectOptionSkipYN === 'Y') { localStorage.removeItem(current_this._grid_class+'_grid_select_option_skip_yn'); } } }); } // var current_this = this; // confirmMessage("그리드의 현재 설정을 저장하시겠습니까?", function(evnet, flag, current_this){ // var current_col = current_this._jqx_columns; // // //save_grid_data(current_col); // // var url_split = getCurrentPageUrl(); // // if(null != url_split) // { // localStorage.setItem(url_split+ '_' + current_this._grid_class, JSON.stringify(current_col)); // onlyMessage('그리드 설정이 저장되었습니다.
각 자리별로 설정이 저장되며
초기화는 브라우져의 캐쉬 삭제로 가능합니다.'); // } // else // { // onlyMessage('정보를 찾을수 없습니다.'); // } // }, current_this); // var current_url = window.location.pathname; // var url_split = current_url.split('/'); // localStorage.setItem(url_split[url_split.length-1], JSON.stringify(current_col)); } // 현재 페이지의 컬럼 저장정보를 불러온다. EcoGrid_jqx.prototype.getCurrentPageSetting = function() { var option_save_location = getViewOptionData_value('그리드 설정 DB 저장',CURRENT_MANAGE_CODE); var url_split = getCurrentPageUrl(); // db 저장 if(undefined != option_save_location && null != option_save_location && '' != option_save_location && 'Y' == option_save_location) { if(null != url_split) { // 기존 저장된 정보 추출 var saved_local_data = com_Getlayout('grid_property'); if(undefined != saved_local_data && null != saved_local_data && '' != saved_local_data) { saved_local_data = JSON.parse(saved_local_data); } else { return null; } if(saved_local_data.length > 0) { for(var index in saved_local_data) { // 기존 정보중에 현재 그리드에 대한 정보가 존재하는지 판단. var one = saved_local_data[index]; if(one.grid_location == url_split+ '_' + this._grid_class) { // 24.03.20 최연희 - 페이징건수의 설정값도 가져오도록 수정 let savedSetting = {}; savedSetting.columns = one.columns; if(one.hasOwnProperty('row_num')) savedSetting.row_num = one.row_num; //페이징 건수 return savedSetting; } } } } } else // 로컬 저장 { if(null != url_split) { const savedSetting = localStorage.getItem(url_split+ '_' + this._grid_class); if(undefined != savedSetting && null != savedSetting && "" != savedSetting) { return JSON.parse(savedSetting); } else { return null; } } else { return null; } } } //페이징 분리 그리기 EcoGrid_jqx.prototype._initPaging = function (obj){ var table_selector = obj._gridid; var pagination_selector = obj._pagination_id; var page_range = 10; // 한 화면에 보여질 페이지 갯수 var callback = obj._pageCallBack ; var total_data_num = obj._totalCount; var cur_page = obj._page; var rowNum = obj._rowNum; var customCss = obj._customCss; // 현재 한 번에 보여주는 row 숫자 var cur_row_limit = rowNum; // 전체 페이지 길이 var total_page_num = Math.ceil(total_data_num / cur_row_limit); // 페이지를 1~10, 11~20 하는 식으로 그룹으로 표현할 때 몇 번째 그룹인지 var cur_page_group = parseInt( (cur_page - 1) / page_range); // 이전 페이지 그룹의 첫 번째 시작 var prev_group_first_page = ( cur_page_group - 1 ) * page_range + 1; if(prev_group_first_page < 0) prev_group_first_page = 1; // 다음 페이지 그룹의 첫 번째 시작 var next_group_first_page = ( cur_page_group + 1 ) * page_range + 1; if(next_group_first_page > total_page_num) next_group_first_page = total_page_num; this._global_call = callback; var pagination_html = ""; var to_print_page = cur_page_group * page_range + 1; //페이지를 그려주는 부분 while( (page_range > 0) && (to_print_page <= total_page_num) ){ if(to_print_page == cur_page){ pagination_html += this._getSinglePaginationBold(to_print_page); } else { pagination_html += this._getSinglePagination(to_print_page); } page_range--; to_print_page++; } //2018.02.19 강예슬 추가 - 이전/다음 버튼 수정 // 페이지네이션 처음, 이전 //pagination_html = this._getFirstPagination() + this._getPrevGroupPagination(prev_group_first_page) + pagination_html; pagination_html = this._getFirstPagination() + this._getPrevGroupPagination(cur_page) + pagination_html; // 페이지네이션 다음, 끝 //pagination_html += this._getNextGroupPagination(next_group_first_page) + this._getLastPagination(total_data_num); pagination_html += this._getNextGroupPagination(cur_page,total_page_num) + this._getLastPagination(total_data_num); //pagination_html += '
'; var temp_sortmode = $(this._gridid).jqxGrid('sortmode'); var grid_selection_mode = $(this._gridid).jqxGrid('selectionmode'); if(undefined != temp_sortmode && null != temp_sortmode && 'many' == temp_sortmode) { temp_sortmode = "checked='checked'"; } else { temp_sortmode = ''; } //var pagesizeOption_html = ''; var pagesizeOption_html = '페이징건수'; var munti_select = ''; var selection_mode_temp = obj._selectionmode; // 다중선택 체크박스 모드일경우만 다중선택 옵션 활성화 if(selection_mode_temp == 'checkbox') { if(grid_selection_mode == "multiplerowsextended") { grid_selection_mode = "checked='checked'"; } munti_select = '' } else { munti_select = ''; } // 그리드의 설정을 저장하기 위한 버튼 var save_btn_html = '
'+munti_select+pagesizeOption_html+'
'; // 그리드 안에 페이지네이션 추가 //페이징이 활성화 일때 if(this._gridPaging == true){ if(this._data != null && undefined != this._data && 0 < this._data.length) { if(this._selectionmode == "checkbox"){ $(this._gridid+" .jqx-grid-pager").empty().append('
Total : 0 / '+total_data_num+'
' + pagination_html +'
'+save_btn_html+'
'); } else{ $(this._gridid+" .jqx-grid-pager").empty().append('
Total : '+total_data_num+'
' + pagination_html + '
'+save_btn_html+'
'); } } else { if(this._selectionmode == "checkbox"){ $(this._gridid+" .jqx-grid-pager").empty().append('
Total : 0 / '+total_data_num+'
'+save_btn_html+'
'); } else{ $(this._gridid+" .jqx-grid-pager").empty().append('
Total : '+total_data_num+'
'+save_btn_html+'
'); } } } // 24.07.29 최연희 - 그리드 커스텀 css 추가 if(obj._customCss) { const customCssList = obj._customCss; for(const obj of customCssList) { const targetElement = document.querySelector(obj.target); if(targetElement) { const cssList = obj.css; for(const key in cssList) { targetElement.style[key] = cssList[key]; } } } } // 선정 건수 초기화 obj._jqxOnSelectCntView(this); // 페이지네이션 추가 // $(pagination_selector) // .empty() // .append(pagination_html); }; //실제 페이지부분을 그려줌 EcoGrid_jqx.prototype._getCustomSinglePagination = function (page_class, func_name, parameter, page_num){ var param = "'" + parameter.join("','") + "'"; //join() : ()에것으로 배열을 문장으로 연결해줌 page_class = '\'' + page_class + '\''; return "" + page_num + ""; }; //현재 페이지외에 페이지부분 EcoGrid_jqx.prototype._getSinglePagination = function (page_num){ var param = [this._gridid, page_num]; return this._getCustomSinglePagination('page', 'goSelectedPage', param, page_num); }; //현재 페이지 EcoGrid_jqx.prototype._getSinglePaginationBold = function (page_num){ //현재 페이지 번호 저장 currentPage = page_num; var param = [this._gridid, page_num]; return this._getCustomSinglePagination('page cur_page', 'goSelectedPage', param, page_num); }; // 페이지네이션 처음 (<<) EcoGrid_jqx.prototype._getFirstPagination = function (){ var param = [this._gridid]; /*var icon = '';*/ var icon = '<<'; return this._getCustomSinglePagination('goto first', 'goFirstPage', param, icon); }; //2018.02.19 강예슬 추가 //페이지네이션 다음 (>) EcoGrid_jqx.prototype._getNextGroupPagination = function (page_num,total_page_num){ var param = [this._gridid, page_num]; if(page_num < total_page_num){ var param = [this._gridid, Number(page_num)+1]; } var icon = '>'; return this._getCustomSinglePagination('goto next', 'goSelectedPage', param, icon); } /*EcoGrid_jqx.prototype._getNextGroupPagination = function (page_num){ var param = [this._gridid, page_num]; //var icon = ''; var icon = '>'; return this._getCustomSinglePagination('goto next', 'goSelectedPage', param, icon); };*/ //2018.02.19 강예슬 추가 //페이지네이션 이전 (<) EcoGrid_jqx.prototype._getPrevGroupPagination = function (page_num){ var param = [this._gridid, page_num]; if(page_num > 1) { var param = [this._gridid, Number(page_num)-1]; } //var icon = ''; var icon = '<'; return this._getCustomSinglePagination('goto prev', 'goSelectedPage', param, icon); }; /* EcoGrid_jqx.prototype._getPrevGroupPagination = function (page_num){ var param = [this._gridid, page_num]; //var icon = ''; var icon = '<'; return this._getCustomSinglePagination('goto prev', 'goSelectedPage', param, icon); };*/ //페이지네이션 끝 (>>) EcoGrid_jqx.prototype._getLastPagination = function (total_data_num){ var param = [this._gridid,total_data_num,this._rowNum]; /*var icon = '';*/ var icon = '>>'; return this._getCustomSinglePagination('goto last', 'goLastPage', param, icon); }; //맨 처음 페이지로 이동 EcoGrid_jqx.prototype._goFirstPage = function (){ this._goSelectedPage(this._gridid, 1); }; //맨 끝 페이지로 이동 EcoGrid_jqx.prototype._goLastPage = function (table_selector,total_data_num,rowNum){ var total_records = total_data_num; var total_page = Math.ceil(total_records /rowNum); this._goSelectedPage(table_selector, total_page); }; // 페이지 클릭시 실행되는 함수 (클릭된 페이지로 이동시켜준다) EcoGrid_jqx.prototype._goSelectedPage = function(table_selector, page_num) { if (this._pagingType == "grid_type") { // 그리드 페이징일때 this._page = page_num; // 페이지번호 이동을 위해 클릭된 페이지를 현재 페이지로 넣고 그리드 리로드 $(table_selector).jqxGrid('gotopage', (page_num-1)); // 첫 페이지가 0에서부터 시작되는듯 this._TotalRowInPagination(this); this._initPaging(this); } else { if (this._global_call != undefined) { // 페이징 분리일때 this._global_call(page_num, this._sort_field, this._sort_option); } } }; // 데이터의 총 갯수 그리기 EcoGrid_jqx.prototype._TotalRowInPagination = function (obj){ if(obj._totalCount==undefined){ obj._totalCount = 0; } $(obj._pagination_id).closest('.metis_pagination').find('.search_filter') .empty() .append("Total : " + obj._totalCount + " 건"); gridTotalCount = obj._totalCount; }; //선택한 row 데이터 가져오기 EcoGrid_jqx.prototype.gridRowData = function (){ var rowindexes = $(this._gridid).jqxGrid('getselectedrowindexes'); if(this._selectionmode == "singlerow"){ var rowData = $(this._gridid).jqxGrid('getrowdata', rowindexes); return rowData; }else{ var data = []; for(var i in rowindexes){ data.push($(this._gridid).jqxGrid('getrowdata', rowindexes[i])); } return data; } } //선택된 row를 this._multiselect에 상관없이 array로 반환한다. 없으면 length = 0 //{label:"REC_KEY", name:"SPECIES_KEY", hidden:true, key:true } 처럼 key:true 가 있어야 정상작동 없으면 false로 들어갈 수 있음 EcoGrid_jqx.prototype.gridRowDataArray = function (){ var rowdata_Array=[]; // var rowindexes,rowindex; // // // 20.03.06 이현주 수정 // if(this._selectionmode == "singlerow"){ // rowindex = $(this._gridid).jqxGrid('getselectedrowindex'); // if(rowindex != undefined && rowindex != null){ // $(this._gridid).jqxGrid('getrowdata', rowindex); // // } // // } else { var rowindexes = $(this._gridid).jqxGrid('getselectedrowindexes'); if(rowindexes.length==0){ }else{ for(var i in rowindexes){ rowdata_Array.push($(this._gridid).jqxGrid('getrowdata', rowindexes[i])); } } // } return rowdata_Array; }; //전체데이터 가져오기 EcoGrid_jqx.prototype.gridAllRowDataArray = function() { var rows = $(this._gridid).jqxGrid('getrows'); return rows; } //전체데이터의 갯수 가져오기 EcoGrid_jqx.prototype.getRowCount = function() { var row = $(this._gridid).jqxGrid('getrows'); if(row != null && row != undefined) return row.length; return 0; }; //전체데이터 가져오기 EcoGrid_jqx.prototype.getdisplayrows = function() { var rows = $(this._gridid).jqxGrid('getdisplayrows'); return rows; } //그리드 데이터 초기화 EcoGrid_jqx.prototype.clearGridData = function (){ $(this._gridid).jqxGrid('clear'); var data = this._gridTypePrint("",""); return data; }; //특정 row 선택 - id - 사용자가 따로 지정 불가능 (key 지정 불가능) EcoGrid_jqx.prototype.setSelection = function (keyId){ var id = this.keyIdGetRowid(keyId); $(this._gridid ).jqxGrid('selectrow',id); var rowindexes = $(this._gridid).jqxGrid('getselectedrowindexes'); if(this.selectDataTop == true){ var sortinformation = $(this._gridid).jqxGrid('getsortinformation'); $(this._gridid).jqxGrid('removesort'); $(this._gridid).jqxGrid('sortby', 'orderByNum','desc'); // 전체 데이터 초기화 var rowsAll = $(this._gridid).jqxGrid('getrows'); for(let index in rowsAll){ let one = rowsAll[index]; if(one.orderByNum != ''){ $(this._gridid ).jqxGrid('setcellvalue', one.uid, "orderByNum", ''); } } // 선정된 값들을 재정렬한다. for(var i in rowindexes){ let one = $(this._gridid).jqxGrid('getrowdata', rowindexes[i]); // console.dir(one); if(rowindexes[i] == id){ $(this._gridid ).jqxGrid('setcellvaluebyid', rowindexes[i], "orderByNum", rowindexes.length + Number(1)); }else{ $(this._gridid ).jqxGrid('setcellvaluebyid', rowindexes[i], "orderByNum", Number(i) + Number(1)); } } } }; //그리드 전체선택 //멀티 선택의 경우만 진행된다. EcoGrid_jqx.prototype.setSelectAll = function (){ if(this._selectionmode == "checkbox"){ $(this._gridid ).jqxGrid('selectallrows'); } }; //그리드의 첫번째 데이터를 서정한다. EcoGrid_jqx.prototype.setFirstDataSelect = function (){ $(this._gridid ).jqxGrid('selectrow',0); }; //그리드 선택정보 초기화 EcoGrid_jqx.prototype.resetSelection = function () { $(this._gridid ).jqxGrid('clearselection'); }; //그리드 변경사항 적용 EcoGrid_jqx.prototype.reloadGrid = function() { this._page = 1; // 헤더클릭 정렬시 페이지를 1페이지로 이동을 위해 $(this._gridid).jqxGrid('gotopage', (this._page-1)); this._gridComplete(this); $(this._gridid ).jqxGrid('clearselection'); } //id에 해당하는 row의 색상 변경 EcoGrid_jqx.prototype.setRowData = function (id,color) { //TODO List : 색상주는 옵션 다시찾아보기. // var gridId = strReplaceAll(this._gridid,"#",""); // var row_index = this.keyIdGetRowIndex(id); // var rowid = "#row"+row_index+gridId; // // var temp = $(rowid+" div") // $(rowid+" div").css({ 'background-color': "#"+color}); var gridId = strReplaceAll(this._gridid,"#",""); var row_index = this.keyIdGetRowIndex(id); var rowid = "#row"+row_index+gridId; console.dir(rowid); for(var i in this._jqx_columns){ var colum = this._jqx_columns[i]; colum.cellclassname = id; if(i > 0) { document.getElementsByClassName(id).style.backgroundColor = '#'+color; } } this._gridTypePrint(this._data,this); }; //id에 해당하는 row의 색상 변경 EcoGrid_jqx.prototype.setRowDataTest = function (id,color) { var gridId = strReplaceAll(this._gridid,"#",""); var row_index = this.keyIdGetRowIndex(id); var rowid = "#row"+row_index+gridId; console.log(rowid); console.log(id); document.getElementById(rowid).style.backgroundColor = '#'+color; this._gridTypePrint(this._data,this); }; //현재 페이지 번호를 보여줌 EcoGrid_jqx.prototype.getCurrentPage = function () { return currentPage; }; //총 레코드수를 검색 EcoGrid_jqx.prototype.getGridTotalCount = function () { return gridTotalCount; }; // 그리드 전체 데이터 가져오기 EcoGrid_jqx.prototype.getGridAllData = function () { var rows = $(this._gridid).jqxGrid('getrows'); return rows; }; // 해당 데이터 삭제 EcoGrid_jqx.prototype.delRowData = function (keyId) { var id = this.keyIdGetRowid(keyId); $(this._gridid).jqxGrid('deleterow', id); var data = this.gridAllRowDataArray(); return data; }; //선택한 그리드의 id 가져오기 (하나의 데이터) EcoGrid_jqx.prototype.getRowid= function() { var rowindexes = $(this._gridid).jqxGrid('getselectedrowindex'); var rowData = $(this._gridid).jqxGrid('getrowdata',rowindexes); var keyId = rowData[this._keycol]; return keyId; }; //선택한 그리드의 id 가져오기 (여러개의 데이터) EcoGrid_jqx.prototype.getRowidMult= function() { var rowindexes = $(this._gridid).jqxGrid('getselectedrowindexes'); var keyId = []; for(var i in rowindexes){ var rowData = $(this._gridid).jqxGrid('getrowdata',rowindexes[i]); keyId.push(rowData[this._keycol]); } return keyId; }; //row id로 데이터 가져오기 EcoGrid_jqx.prototype.getRowidData = function (keyId){ var id = this.keyIdGetRowid(keyId); var rowData = $(this._gridid).jqxGrid('getrowdata', id); return rowData; } // 엑셀 출력시 어떤 형태로 출력할지 결정한다. // 20.04.20 jiyeong 개인정보출력 로그 내역 insert을 위해 callback 추가 // 24.10.14 최연희 - isDisplayTitle : title, subtitle 등 부가 정보 없이 그리드 헤더와 데이터만 출력하기 위해 추가 EcoGrid_jqx.prototype.exportExcel = function(pFileName,title,subTitle,searchData,printType,callback,isDisplayTitle) { var obj = this; var msExcel = this.msExcel; var exportHcell = this.exportHcell; var directPrint = this.directPrint; // 20.04.27 jiyeong 이용자 개인정보 출력 제한 var currentUserInfo = JSON.parse(localStorage.getItem('current_user_info')); if(callback != undefined && currentUserInfo.PRIVACY_PRINT_LEVEL == '1'){ onlyMessage('이용자의 개인정보가 포함된 목록(엑셀, 목록, 리포트 등)의 출력이 제한된 계정이므로 출력이 불가능합니다.'); return; } // subtitle이 없는경우는 출력 일자를 기본 세팅한다. if(subTitle == undefined || null == subTitle || "" == subTitle){ subTitle = "(" + formatDateYYYYMMDD(new Date(),"/") + ")"; } if(isDisplayTitle == undefined) isDisplayTitle = true; // 기본값 true if(this._selectionmode == 'singlerow'){ msExcel(obj,pFileName,title,subTitle,searchData,"all",null,"",isDisplayTitle); }else{ //21.01.12 출력사유 팝업창 띄울지 안띄울지 callback함수 이름으로 구분 openMessagePopup({ title : "출력", msg : "출력할 형태를 선택해 주세요", btn1_text : "전체자료", btn1_function: function(e) { if(callback != undefined && callback.name == 'insertPrivacyPrintLog'){ print_reason_popup(function(reason){msExcel(obj,pFileName,title,subTitle,searchData,"all",callback,reason,isDisplayTitle)}) }else{ // var excel_export_type = getViewOptionData_value('엑셀출력방식',localStorage.getItem('current_user_manage_code')); // if(undefined != excel_export_type && null != excel_export_type && 'LOCAL' == excel_export_type){ // // 엑셀 반출을 화면에서 직접 해결하는 방식 추가 // getGridDataExport(obj._gridid,obj._jqx_columns); // } // else{ // // 기존 방식 // msExcel(obj,pFileName,title,subTitle,searchData,"all",callback) // } // 기존 방식 msExcel(obj,pFileName,title,subTitle,searchData,"all",callback,"",isDisplayTitle) } }, btn2_text : "선정자료", btn2_function: function(e) { if(callback != undefined && callback.name == 'insertPrivacyPrintLog'){ print_reason_popup(function(reason){msExcel(obj,pFileName,title,subTitle,searchData,"Select",callback,reason,isDisplayTitle)}) }else{ msExcel(obj,pFileName,title,subTitle,searchData,"Select",callback,"",isDisplayTitle) } }, // btn2_text : "일반출력", // btn2_function: function(e) { directPrint(obj, title)}, // btn3_text : "한셀", // btn3_function: function(e) { exportHcell(obj,title) } }); } return; }; //일반 프린터로 직접 출력 EcoGrid_jqx.prototype.directPrint= function(obj, title) { var datahtml = exportHtml(obj,title); // 바로 출력하는 함수 호출 com_direct_print(datahtml); } function exportHtml(obj, title) { var jqx_columns = obj._jqx_columns; var colModel = []; var viewCol = []; for(var i in jqx_columns){ var col = {}; col.text = jqx_columns[i].text col.datafield = jqx_columns[i].datafield col.hidden = jqx_columns[i].hidden colModel.push(col); } if (title == undefined) { title = ""; }; //var arrHeader = colModel.split(','); // var html=""; var html= "

"+title+"

"; html= html + "
"; // var name = "제목테스트"; // html = html + ""+name+""; for ( var y = 0; y < colModel.length; y++ ) { var col = colModel[y]; if(colModel[y].hidden == true) { }else { html = html + ""; viewCol.push(colModel[y].datafield); } } html = html + ""; // 전체 데이터 가져오기 var total_data = $(obj._gridid).jqxGrid('getrows'); //값 불러오기 for(var i=0;i< total_data.length;i++) { html = html +""; data = total_data[i]; for(var j in viewCol){ var view_data = data[viewCol[j]]; if(view_data == "") { view_data = " "; } html=html + '"; } html = html+""; } // //값 불러오기 // for(var i=0;i< mya.length;i++) { // var datac= pGridObj.getRowData(mya[i]); // html = html +""; // for(var j=0; j< viewCol.length;j++) html=html + '"; // html = html+""; // } html=html+"
" + colModel[y].text + "
' + view_data+"
' + encodeURIComponent(datac[viewCol[j].name])+"
"; // end of line at the end html = "" + html + ""; return html; } //엑셀 출력 EcoGrid_jqx.prototype.msExcel= function(obj,pFileName,title,subTitle,searchData,printType,callback,reason,isDisplayTitle) { var excel_export_type = getViewOptionData_value('엑셀출력방식',localStorage.getItem('current_user_manage_code')); // 전체 데이터 가져오기 var total_data = []; if(printType==undefined || printType=="all" || printType=="" ){ total_data = obj.gridAllRowDataArray(); }else{ total_data = obj.gridRowData(); } // 24.01.09 김요한 출력할 데이터가 없을 경우 return if (!total_data.length) { onlyMessage("출력할 데이터가 존재하지 않습니다."); return; } if(undefined != excel_export_type && null != excel_export_type && 'LOCAL' == excel_export_type){ // 엑셀 반출을 화면에서 직접 해결하는 방식 추가 getGridDataExport(obj._gridid,obj._jqx_columns, printType); // 20.04.20 jiyeong 이용자 정보 출력 시 로그 insert if(callback){ callback(total_data,reason); } return; } //controller로 고고 var jqx_columns = obj._jqx_columns; var colModel = []; var viewCol = []; for(var i in jqx_columns){ var col = {}; col.text = jqx_columns[i].text col.datafield = jqx_columns[i].datafield col.hidden = jqx_columns[i].hidden colModel.push(col); } if (title == undefined) { title = ""; } if (subTitle == undefined || subTitle=="") { subTitle = ""; } if (searchData == undefined) { searchData = ""; } if(isDisplayTitle == undefined) { isDisplayTitle = true; } var header = []; //컬럼 name for ( var y = 0; y < colModel.length; y++ ) { var col = colModel[y]; if(colModel[y].hidden == true){ // do nothing }else{ header.push(colModel[y].text); viewCol.push(colModel[y].datafield); } } var param = {}; param.title = title; param.subTitle = subTitle; param.pFileName = pFileName; param.total_data = JSON.stringify(total_data) //데이터 param.header = header.join(","); //컬럼값 param.viewCol = viewCol.join(","); //쉘의 이름 param.isDisplayTitle = isDisplayTitle; // title, subtitle 제거 여부 if(searchData==""){ param.searchData = ""; }else{ param.searchData = JSON.stringify(searchData); } $.ajax({ type: "POST", url: "/METIS/common/getExcelExport.do", dataType: "json", data: param, timeout: 120000, success: function(data) { if(data.status == "success"){ // 20.04.20 jiyeong 이용자 정보 출력 시 로그 insert if(callback){ callback(total_data,reason); } window.location = data.downLoadURL; }else{ onlyMessage("오류가 발생했습니다.") } } }); } // 엑셀로 출력할 데이터를 새로운 row에 한꺼번에 그려서 가졍져오는함수 (formater때문에 따로 한번 더 그려서 데이터를 가져옴) var ecxelTotalData_grid; EcoGrid_jqx.prototype.ecxelTotalData= function() { $(".metis_container").append(""); var table_id ="#ecxelTotalData_contents"; var option={ rowNum:3000, grid_class:"ecxelTotalData_grid", gridPaging:false, pagingType:"grid_type", multiselect : true }; ecxelTotalData_grid = new EcoGrid(table_id,this._colModel,'',option); ecxelTotalData_grid._gridTypePrint(this._data,option); //var allData = ecxelTotalData_grid.getGridAllData(); var allData1 = $(""+table_id+"").jqGrid('getDataIDs') var data = []; for(var i in allData1){ data.push(ecxelTotalData_grid.getRowidData(allData1[i])) } return data; }; EcoGrid_jqx.prototype.exportHcell = function (obj,title) { var g_HCell; g_HCell = new ActiveXObject("HCell.Application"); g_HCell.Visible = 1; var oSheet = g_HCell.ActiveSheet; var oCell; var pGridObj = $(obj._gridid); //전체데이터 var jqx_columns = obj._jqx_columns; var colModel = []; for(var i in jqx_columns){ var col = {}; col.text = jqx_columns[i].text; col.datafield = jqx_columns[i].datafield; col.hidden = jqx_columns[i].hidden; colModel.push(col); } var xlCenter = -4108; var col_al = ["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","Y","U","V","W","X","Y","Z"]; var col_overIndex = -1; var col_index = 0; var viewCol = []; for ( var y = 0; y <= colModel.length; y++ ) { var col = colModel[y]; if(col == null || col == undefined || col.hidden != undefined || col.hidden == true) { continue; }else { oCell = oSheet.Range(col_al[col_index]+"3"); //text oCell.value = colModel[y].text; col_index = col_index + 1; //datafield viewCol.push(colModel[y].datafield); } } if(undefined != title && null != title) { oSheet.Range("A1:"+col_al[col_index-1]+"1").MergeCells = true; oCell = oSheet.Range("A1:"+col_al[col_index-1]+"1"); oCell.RowHeight = 50; oCell.HorizontalAlignment = xlCenter; oCell.Font.Bold = true; oCell.Font.Size = 20; oCell.value = title; } // 전체 데이터 가져오기 var total_data = $(obj._gridid).jqxGrid('getrows'); //값 불러오기 for(var i=0;i< total_data.length;i++) { data = total_data[i]; for(var j in viewCol) { oCell = oSheet.Range(col_al[j]+""+(i+4)); if(viewCol[j] == "No") { oCell.value = Number(i) + 1; } else { oCell.value = data[viewCol[j]]; } //html=html + '' + data[viewCol[j]]+""; } } var xlContinuous = 1; var xlAutomatic = -4105; var xlThin = 2; // 헤더 스타일 적용 oCell = oSheet.Range("A3:" + col_al[(viewCol.length-1)] + "3"); oCell.HorizontalAlignment = xlCenter; oCell.Font.Bold = true; oCell.Interior.Color = f_convert_rgb(166,166,166); oSheet.UsedRange.Columns.AutoFit(); // 전체 줄그리기 oCell = oSheet.Range("A3:" + col_al[col_index-1]+ "" + (total_data.length+3)); oCell.Borders.LineStyle = xlContinuous; oCell.Borders.Weight = xlThin; oCell.Borders.ColorIndex = xlAutomatic; }; function f_convert_rgb(r, g, b) { return r + (256*g) + (65536*b); } //keyId로 rowid 를 가져오는 함수 EcoGrid_jqx.prototype.keyIdGetRowid = function (keyId) { // //현재 key 인 컬럼명을 확인 // //key가 있는지 확인 // var keyColum = ""; // for(var i in this._jqx_columns){ // var colum = this._jqx_columns[i]; // if(colum.key != undefined && colum.key == true){ // keyColum = colum.datafield; // break; // } // } //모든 데이터를 가져와서 해당 키의 row를 꺼낸다. var allData = this.gridAllRowDataArray(); var rowID = ""; for(var j in allData){ var data = allData[j]; if(data[this._keycol] == keyId ){ rowID = allData[j].uid; break; } } return rowID; } //keyId로 rowid 를 가져오는 함수 EcoGrid_jqx.prototype.keyIdGetRowIndex = function (keyId) { // //현재 key 인 컬럼명을 확인 // //key가 있는지 확인 // var keyColum = ""; // for(var i in this._jqx_columns){ // var colum = this._jqx_columns[i]; // if(colum.key != undefined && colum.key == true){ // keyColum = colum.datafield; // break; // } // } //모든 데이터를 가져와서 해당 키의 row를 꺼낸다. var allData = this.gridAllRowDataArray(); var rowID = ""; var index; for(var j in allData){ var data = allData[j]; if(data[this._keycol] == keyId ){ rowID = allData[j].uid; index = j; break; } } return index; } // 23.12.13 최연희 추가 - 수정,변경 작업시 현재 체크데이터와 스크롤 위치를 저장 EcoGrid_jqx.prototype._saveGridData = function(data) { // 24.08.22 최연희 - 그리드 더블 클릭 시 그리드 객체에서 선택된 rowdata 를 가져올 수 없는 문제로 인해 _saveGridData 함수 호출 시 선택데이터를 전달받도록 수정 if(data) { if(!Array.isArray(data)) checkData = [data]; else checkData = data; } else { checkData = this.gridRowData(); } if(checkData.length === 0) return; // 현재 보이는 그리드의 가장 첫번째 열의 rownumber 값 저장 let currentFirstIndex = Number($('#row0' + (this._gridid).substr(1) + '> div[columnindex="1"]').children().first().text()); const pagingInfo = $(this._gridid).jqxGrid('getpaginginformation'); currentGridPage = pagingInfo.pagenum + 1; // 현재 페이지 // 페이징 분리시 currentFirstIndex 값 재정의 if(currentGridPage > 1) { currentFirstIndex = currentFirstIndex - (pagingInfo.pagenum * pagingInfo.pagesize); } const rowHeight = $(this._gridid).jqxGrid('rowsheight'); scrollPosition = (currentFirstIndex - 1) * rowHeight; this._saveCurrentGrid = true; }