interceptorExclude 설정

dev
박성영 3 months ago
parent 6873058e03
commit aa888bde91

@ -76,7 +76,8 @@ query-executor:
# Interceptor configuration
interceptor:
interceptorExclude:
- /** #ubi report test
- /ubi4/** #ubi report test
- /UbiServer/** #ubi report test
- /login/** #로그인
- / #루트 페이지
- /.well-known/** #개발 툴

@ -187,7 +187,7 @@
gridConfig.setOptGridHeight(470); // 그리드 높이(단위: px)
gridConfig.setOptRowHeight(30); // 그리드 행 높이(단위: px)
gridConfig.setOptRowHeaderType(''); // 행 첫번째 셀 타입 비활성화 (라디오 버튼을 컬럼으로 구현)
gridConfig.setOptUseClientSort(false); // 서버사이드 정렬 false
gridConfig.setOptUseClientSort(false); // 서버사이드 정렬 false
// 페이징 옵션 설정
gridConfig.setOptPageOptions({
@ -242,15 +242,13 @@
name: 'crdnYr',
align: 'center',
width: 80,
sortingType: 'desc',
sortable: true
sortingType: 'desc'
},
{
header: '단속번호',
name: 'crdnNo',
align: 'center',
width: 90,
sortable: true
width: 90
},
{
header: '지역구분',
@ -364,6 +362,8 @@
setSearchCond();
SEARCH_COND.perPage = params.perPage;
SEARCH_COND.page = params.page;
//SEARCH_COND.sortColumn = [];
console.log('SEARCH_COND:', SEARCH_COND);
return $.param(SEARCH_COND);
}
};
@ -450,6 +450,17 @@
}
});
// 정렬 문제 있음....
this.instance.on('sort', function(ev) {
var sortColumns = ev.sortState.columns;
SEARCH_COND.sortColumns = [];
sortColumns.forEach(function(sortColumn){
SEARCH_COND.sortColumns.push(
{"columnName":sortColumn.columnName, "ascending":sortColumn.ascending}
);
});
});
},
},
@ -469,7 +480,7 @@
},
/**
* 목록 새로고침
* 목록 현재 페이징 새로고침
*/
refreshList: function() {
if (this.grid.instance) {
@ -477,6 +488,15 @@
}
},
/**
* 목록 조회
*/
search: function() {
if (this.grid.instance) {
this.grid.instance.readData();
}
},
/**
* 단속 상태를 업데이트합니다.
* 선택된 행이 있을 때만 상태를 업데이트합니다.
@ -644,5 +664,8 @@
CrdnRegistAndViewList.init();
});
// 전역 네임스페이스에 모듈 노출
window.CrdnRegistAndViewList = CrdnRegistAndViewList;
})(window, jQuery);
</script>
Loading…
Cancel
Save