I have a grid with editing in the cell. I need to put the yellow color in each cell after this cell is edited. Can you help me please? Which is the better way in this case?In this moment I have for example :
<kendo-grid-column [style]="isEdited ? {'background-color': '#666','color': '#fff'} : {}" field="customerDateWanted" [width]="150" editor="date" title="Cust Date"
[format]="'{0:yyyy-MM-dd}'">
<ng-template KendoGridEditTemplate let-dataItem="dataItem" let-formGroup="formGroup">
<kendo-datepicker [formControl]="formGroup.controls.customerDateWanted" [format]="'dd/MM/yyyy'">
</kendo-datepicker>
</ng-template>
</kendo-grid-column>
isEdited is a boolean that I am testing. I think that I need to put a value depending of this cell was edited or not but I don't know how.
Thanks!!