1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
| /**
| * Created by wisestone on 2018-08-29.
| */
| 'use strict';
|
| define(['app'],
| function (app) {
| app.directive('jsTable', ['$log',
| function ($log) {
| return {
| restrict : 'E',
| scope : {
| event : '=',
| data : '=',
| tableConfigs : '=',
| hideHeader : '=', // 헤더 부분 숨김 여부
| useSort : '=', // 정령 기능 사용 여부
| detailView : "=" // 이슈 목록 상세형 변경을 위해 사용. 다른 화면은 사용하지 않음.
| },
| replace : true,
| templateUrl : '/custom_components/js-table/js-table.html',
| controller : function ($scope, $element, $attrs) {
| $scope.fn = {
| getResponseData : getResponseData
| };
|
| // 테이블 정보 가져오기
| function getResponseData() {
| return $scope.data;
| }
| },
| link : function (scope, element, attrs) {
|
| }
| };
| }])
| });
|
|