0
プロジェクトでAngular2データテーブルを使用して、ページングを含むテーブルを表示しています。Angular2 datatableディレクティブの使用
ここにライブラリhttps://github.com/mariuszfoltak/angular2-datatableへのリンクがあります。
誰かが私が#mf="mfDataTable"
に関していくつかの疑問を明らかにしてもらえますか?開発者は彼のデモで使用し、mf.data
を使用してデータを参照しています。しかし、私はそのテーブルを使用してもテーブルは作成されませんが、.mfなしで使用すると、データがテーブルにロードされます。
だから、#mf="mfDataTable"
が必要ですか、何が欠けていますか?
以下は私のコードです。
よろしく!
<table class="table table-striped table-hover" [mfData]="products" #mf="mfDataTable" [mfRowsOnPage]="5">
<thead>
<tr>
<th>
<mfDefaultSorter by="gtin">GTIN</mfDefaultSorter>
</th>
<th>
<mfDefaultSorter by="fdoname_en">Name Eng</mfDefaultSorter>
</th>
<th class="no-sort hidden-sm-down">
<mfDefaultSorter by="fdoname_fa">Name Per</mfDefaultSorter>
</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let product of products | SearchPipe : searchText">
<td><a [routerLink]="['/app/master/products',product.gtin]">{{product.gtin}}</a></td>
<td>{{product.fdoname_en}}</td>
<td>{{product.fdoname_fa}}</td>
<td>
<a class="btn btn-primary" [routerLink]="['/app/master/productEdit', product.gtin]">
Edit
</a>
</td>
</tr>
<tr *ngIf="!products.length">
<td> </td>
<td colspan="6">No Records Found</td>
</tr>
<tr *ngIf="(products | SearchPipe : searchText).length === 0">
<td> </td>
<td colspan="6">No matches</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="12">
<mfBootstrapPaginator [rowsOnPageSet]="[5, 10, 25]"></mfBootstrapPaginator>
</td>
</tr>
</tfoot>
</table>