comparison app/result-column.ts @ 25:0795207f3b90

ng2-table now with pager, sorting and styling.
author casties
date Tue, 26 Jan 2016 19:19:23 +0100
parents
children 4926885f8a99
comparison
equal deleted inserted replaced
24:f6f4177d0a81 25:0795207f3b90
1 export class ResultColumn {
2 public name: string;
3 public title: string;
4 public sort: any;
5
6 constructor (name: string, title: string, sort='') {
7 this.name = name;
8 this.title = title;
9 this.sort = sort;
10 }
11 }