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表与列的搜索字段的主要内容,如果未能解决你的问题,请参考以下文章

将多个工作表与列连接在一起作为工作表名称

MS Access sql将5个表与列中的奇怪字符分组

styleColorBar:颜色条的大小与列的绝对值成比例

如何将一个表与另一个表连接,然后计算非空列并将它们按另外两个字段分组?

如何重新排列我的数组值以保持与列的关系?

操作表与操作表数据行