Posted 18 February 2022, 2:50 am EST
Hi ,
I am using wjFlexGridCellTemplate wih search.
when I am using search the cell value is null.
<wj-flex-grid-search [placeholder]="'Search' | translate"
[grid]="flex">
</wj-flex-grid-search>
<wj-flex-grid-column [width]="'*'" style="padding: 0px;" [minWidth]="50" header="Actions" title="Actions">
<ng-template [cellType]="'Cell'" let-cell="cell">
{{cell}}
<img src="../../../../Content/assets/img/ic_edit_24px.png" alt="catalog" (click)="editCatalog(cell.item.ID)" />
<img src="../../../../Content/assets/img/catalog_delet_icon.png" alt="catalog" [ngStyle]="{display: cell.item.CATELOGUE_STATUS === 'Canceled' ? 'none' : 'block'}"
data-toggle="modal" data-target="#cancelCatalogModel" data-whatever="@mdo" data-id="1" (click)="itemClicked(cell.item.ID)" />
<img style="width: 22px; height: 15px;" src="../../../../Content/assets/img/eyeicons01.png" alt="catalog" (click)="viewCatalogShow(cell.item.ID, cell.item.CancelReason)" />
</ng-template>
</wj-flex-grid-column>
I need to get the value of id please suggest