在我的应用程序中使用jhipster。我有一个向其中添加了分页和排序的表,但是我也想在列中添加一个搜索字段,这可能吗?就像这样的http://ng-table.com/
我的HTML是:
<div class="table-responsive" *ngIf="entities">
<table class="table table-striped">
<thead>
<tr jhiSort [(predicate)]="predicate" [(ascending)]="reverse" [callback]="transition.bind(this)">
<th jhiSortBy="id"><span jhiTranslate="global.field.id">ID</span> <span class="fa fa-sort"></span></th>
<th jhiSortBy="nombre"><span jhiTranslate="app.entity.name">Name</span> <span class="fa fa-sort"></span></th>
</tr>
</thead>
<tbody>
<tr *ngFor="let entity of entities ;trackBy: trackId">
<td><a [routerLink]="['../entity', entity.id ]">{{entity.id}}</a></td>
<td>{{entity.name}}</td>
</tr>
</tbody>
</table>
</div>
谢谢。
答案 0 :(得分:0)
我设法使用输入和angular的'purefilter'属性来做到这一点。就是这样:
<input type="text" [(ngModel)]="filter" class="form-control">
<table>
......
<tr *ngFor="let entity of (entities | pureFilter:filter:'name')>
.......
在pureFilter中,我们指示'pureFilter:nameOfFilter:attributeOfEntity'