I am currently utilizing ngx-easy-table
in my application. I am trying to retrieve the input filter value on keyup event, but I have not been able to find any helpful information in the documentation.
Does anyone have any insights or suggestions on how to achieve this?
<ngx-table [configuration]="configuration" [data]="rows" [columns]="columns"
[noResultsTemplate]="noResultsTemplate">
<ng-template let-row>
<td>
<div>{{row.orgaosigla}}</div>
</td>
<td>
<div>{{row.itpanobjeto | truncatetext:50 }}</div>
</td>
<td>
<div>{{float(row.itpanvalorestimadototal) | currencyformat }}</div>
</td>
<td>
<div *ngIf="row.itpanmes">{{ mes(row.itpanmes) }}</div>
</td>
<td>
<div>{{row.priordescricao}}</div>
</td>
<td>
<div>{{row.obestdescricao}}</div>
</td>
<td>
<div>{{row.stipadescricao}}</div>
</td>
<td>
<div>
<a matTooltip="Excluir o Vínculo " (click)="deletar(row)" matTooltipClass="tooltip-azul"
matTooltipPosition="above"
class="mr-2 mouseHover">
<mat-icon class="material-icons delete">link_off</mat-icon>
</a>
</div>
</td>
</ng-template>
</ngx-table>
This is a table displaying various columns based on the given configuration:
public columns: Columns[] = [
{ key: 'orgaosigla', title: 'Unidade - Sigla' },
{ key: 'itpanobjeto', title: 'Objeto' },
{ key: 'itpanvalorestimadototal', title: 'Valor Estimado (R$)' },
{ key: 'itpanmes', title: 'Mês a Contratar' },
{ key: 'priordescricao', title: 'Grau de Prioridade' },
{ key: 'obestdescricao', title: 'Objetivo Estratégico' },
{ key: 'stipadescricao', title: 'Situação' },
{ key: 'actions', title: 'Ações', searchEnabled: false },
];
The specific input field from which I need to retrieve the value on keyup is itpanvalorestimadototal
.