Jhipster表与列的搜索字段
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Jhipster表与列的搜索字段相关的知识,希望对你有一定的参考价值。
我在我的应用程序中使用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>
谢谢。
答案
我设法使用输入和角度的'purefilter'属性。就是这样:
<input type="text" [(ngModel)]="filter" class="form-control">
<table>
......
<tr *ngFor="let entity of (entities | pureFilter:filter:'name')>
.......
在pureFilter中,我们指出'pureFilter:nameOfFilter:attributeOfEntity'
以上是关于Jhipster表与列的搜索字段的主要内容,如果未能解决你的问题,请参考以下文章