Mercurial > hg > ng2-query-ismi
annotate src/app/result-column.ts @ 58:3b4046e0cc02 default
Merge from ng2-table branch.
d7c947909ab888c013171b8c037e4f9fab30fe57
author | casties |
---|---|
date | Wed, 29 Mar 2017 17:19:12 +0200 |
parents | b65a031c4967 |
children |
rev | line source |
---|---|
25 | 1 export class ResultColumn { |
2 public name: string; | |
3 public title: string; | |
4 public sort: any; | |
31
4926885f8a99
selectable result columns. nicer cypher query output.
casties
parents:
25
diff
changeset
|
5 public show: boolean; |
25 | 6 |
31
4926885f8a99
selectable result columns. nicer cypher query output.
casties
parents:
25
diff
changeset
|
7 constructor (name: string, title: string, sort='', show=false) { |
25 | 8 this.name = name; |
9 this.title = title; | |
10 this.sort = sort; | |
31
4926885f8a99
selectable result columns. nicer cypher query output.
casties
parents:
25
diff
changeset
|
11 this.show = show; |
25 | 12 } |
13 } |