How to calculation in cell
I want to cal value of column A * column B and result in total when I edit value in each cell done in real time
Thank You.
Hello Ekarins S,
You can do it by using cell template: https://es.infragistics.com/products/ignite-ui-angular/angular/components/grid/grid#cell-template
<igx-grid ...> ... <igx-column [field]="'A'" [header]="'A'" [dataType]="'number'" [editable]='true'></igx-column> <igx-column [field]="'B'" [header]="'B'" [dataType]="'number'" [editable]='true'></igx-column> <igx-column [header]="'TOTAL'" [dataType]="'number'" [editable]='false'> <ng-template igxCell let-cell="cell"> {{ cell.rowData.A * cell.rowData.B }} </ng-template> </igx-column> ... </igx-grid>