My Kendo UI Grid looks like this::
<kendo-grid [data]="gridData" #grid (edit)="onGridRowEdit($event)" (cancel)="onGridRowCancel($event)" (save)="onGridRowUpdate($event)" (remove)="onGridRowRemove($event)" (add)="onGridRowAdd($event)" noRecords=" " max-height="400"
<kendo-grid-column field="Id" [title]="'ID' | translate:lang" width="80">
<ng-template kendoGridCellTemplate let-dataItem>
<span *ngIf="dataItem.Id">#{{dataItem.Id}}</span>
</ng-template>
...
<kendo-grid-command-column>
...
</kendo-grid-command-column>
</kendo-grid>
The grid per se works absolutely fine. However, when I add a new row, even though the row itself is added on the bottom after saving it, the row's form is added on top of the table. This is confusing as the row disappears and reappears at the bottom when saving.
I haven't found a way to tell the grid to show the form at the end of the list. Is this even possible?