Skip to content

Commit

Permalink
fixed(docs): missing properties on data table documentation (#646)
Browse files Browse the repository at this point in the history
* Added missing selectedRows property on the component description. Closes #441
  • Loading branch information
jotatoledo authored and emoralesb05 committed May 31, 2017
1 parent 9a18a63 commit 363bf24
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,7 @@ <h3>No results to display.</h3>
[multiple]="multiple"
[sortable]="true"
[sortBy]="sortBy"
[(ngModel)]="selectedRows"
[sortOrder]="sortOrder"
(sortChange)="sort($event)">
</td-data-table>
Expand Down Expand Up @@ -305,6 +306,7 @@ <h3>No results to display.</h3>
currentPage: number = 1;
pageSize: number = 5;
sortBy: string = 'sku';
selectedRows: any[] = [];
sortOrder: TdDataTableSortingOrder = TdDataTableSortingOrder.Descending;

constructor(private _dataTableService: TdDataTableService) {}
Expand Down

0 comments on commit 363bf24

Please sign in to comment.