Hi,
In a definition like below I get the same Object in the 'dataItem' parameter as in the 'formGroup' parameter. This leads to me not being able to access the dataItem in my template.
<ng-template kendoGridEditTemplate let-dataItem let-formGroup="formGroup">
<!-- Usage of both dataItem and formGroup -->
</ng-template>
<ng-template kendoGridEditTemplate let-dataItem="dataItem" let-formGroup="formGroup">