I have a grid with the detail template functionality. I would like to not have the expand +/ - and open this template myself, either on selection of the row, or a link on one of the columns on my grid.
Is there a way of doing this? Can i call whatever kendo use to open up this template myself? Something like this?
<kendo-grid
[data]="gridView | async"
[skip]="skip"
[scrollable]="'virtual'"
[selectable]="true"
[pageSize]="pageSize"
[height]="600"
[rowHeight]="36"
[detailRowHeight]="36"
(pageChange)="pageChange($event)">
<kendo-grid-column field="clientID" title="ID" width="80">
<template kendoCellTemplate let-dataItem>
<button class="btn btn-link" (click)="expandDetail()">{{dataItem.clientID}}</button>
</template>
</kendo-grid-column>
<template kendoDetailTemplate let-dataItem>
My Very interesting details go here ...
</template>
</kendo-grid>