I have an editable grid based off this example. It works as expected, except that I need each row to have a detail row with a single text field in it, no columns. The EditTemplateDirective doesn't work outside of a kendo-grid-column. Is there another way to do this?
I would like to avoid creating a separate grid within my detail template if possible since this is a single form.
Here is what I have for my detail template:
<ng-template kendoGridDetailTemplate let-dataItem> {{dataItem.TSRs}} <ng-template kendoGridEditTemplate let-dataItem="dataItem" let-formGroup="formGroup"> <input kendoTextBox [value]="dataItem.TSRs" [formControl]="formGroup.get('TSRs')"> </ng-template></ng-template>
Thanks!
