From 30c4906a7f2db197074c268c0989200e74b4b367 Mon Sep 17 00:00:00 2001 From: minhee <alsdldlfrl@gmail.com> Date: 토, 19 2월 2022 18:06:32 +0900 Subject: [PATCH] - 사용자정의필드 컬럼 정렬 진행중 --- src/main/webapp/custom_components/js-table/js-table.html | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/main/webapp/custom_components/js-table/js-table.html b/src/main/webapp/custom_components/js-table/js-table.html index b583754..a6e0d08 100644 --- a/src/main/webapp/custom_components/js-table/js-table.html +++ b/src/main/webapp/custom_components/js-table/js-table.html @@ -4,7 +4,7 @@ <tr ng-if="hideHeader != true"> <th bindonce ng-repeat="tableConfig in tableConfigs" bo-class="[tableConfig.hAlign, tableConfig.hWidth, tableConfig.dVisible]" - ng-click="!tableConfig.dName.contains('useValue') ? $root.$tableProvider.setOrderByColumn(tableConfig.dName) : $root.$tableProvider.setOrderByColumn(tableConfig.dName)" + ng-click="$root.$tableProvider.setOrderByColumn(tableConfig.dName)" bo-style="{ 'cursor' : tableConfig.dName != '' ? 'pointer' : '' }" rowspan="{{tableConfig.rowSpan}}" colspan="{{tableConfig.colSpan}}" -- Gitblit v1.8.0