Skip to content

Commit

Permalink
Fixed #660
Browse files Browse the repository at this point in the history
  • Loading branch information
Çağatay Çivici committed Dec 20, 2016
1 parent 023ad5f commit e9e01c7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions components/datatable/datatable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -430,6 +430,10 @@ export class DataTable implements AfterViewChecked,AfterViewInit,AfterContentIni
@Input() sortFile: string;

@Input() rowHover: boolean;

@Input() first: number = 0;

@Input() public filters: {[s: string]: FilterMetadata;} = {};

@Output() onRowExpand: EventEmitter<any> = new EventEmitter();

Expand All @@ -446,13 +450,9 @@ export class DataTable implements AfterViewChecked,AfterViewInit,AfterContentIni
@ContentChild(HeaderColumnGroup) headerColumnGroup: HeaderColumnGroup;

@ContentChild(FooterColumnGroup) footerColumnGroup: FooterColumnGroup;

@Input() public filters: {[s: string]: FilterMetadata;} = {};


public dataToRender: any[];

public first: number = 0;

public page: number = 0;

public filterTimeout: any;
Expand Down

0 comments on commit e9e01c7

Please sign in to comment.