From 612b5a21417f3c8dcaed84c1c0691dc883088f61 Mon Sep 17 00:00:00 2001
From: 이민희 <mhlee@maprex.co.kr>
Date: 금, 18 2월 2022 18:04:14 +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 a6e0d08..b583754 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="$root.$tableProvider.setOrderByColumn(tableConfig.dName)"
+            ng-click="!tableConfig.dName.contains('useValue') ? $root.$tableProvider.setOrderByColumn(tableConfig.dName) : $root.$tableProvider.setOrderByColumn(tableConfig.dName)"
             bo-style="{ 'cursor' : tableConfig.dName != '' ? 'pointer' : '' }"
             rowspan="{{tableConfig.rowSpan}}"
             colspan="{{tableConfig.colSpan}}"

--
Gitblit v1.8.0