Posted 18 December 2021, 7:07 am EST
In Angular I have a ```
<ng-template cellType=RowHeader wjFlexGridCellTemplate let-row="row"> <div *ngIf="row.dataItem">{{row.index}}</div> <div *ngIf="!row.dataItem" style="font-size:70%; line-height:1em"> ADD<br>NEW </div> </ng-template> <ng-template cellType=RowHeaderEdit wjFlexGridCellTemplate let-row="row"> <div style="text-align:center;">✎</div> </ng-template>
This all worked according to
https://www.grapecity.com/wijmo/api/classes/wijmo_angular2_grid.wjflexgridcelltemplate.html
This nicely displayed the row index or "ADD NEW" in normal mode and the pen in rows being edited.
However, since recently it [b]constantly displays the pen in the "new row" even without editing[/b]. It might be me but I also have a hunch that this might have changed with the update from Wijmo 5.20203.748 to 5.20213.824 (and ng10 to ng13).
PS: I am afraid I have no sample on stackblitz as running the latest @grapecity/wijmo.angular2.all there fails (and has been ding so for while :-/ ).
Thanks for your assistance!!