showing results for - "how to do if condition in kedo column in angular"
Jakob
27 Sep 2017
1 <kendo-grid [data]="gridData">
2            <kendo-grid-column field="ProductName">
3                <ng-template kendoGridCellTemplate let-dataItem let-rowIndex="rowIndex">
4                    <strong>{{dataItem.ProductName}}</strong>
5                      <img *ngIf='dataItem.Discontinued' src='' alt='Item Discontinued'/>
6                      <img *ngIf='!dataItem.Discontinued' src='' alt='Item Continued'/>
7                </ng-template>
8            </kendo-grid-column>
9        </kendo-grid>