Hello,
I'm creating a button inside the grid that will show up inside each row and the link inside the button have to load the data from the column field , as you can see
in bold in this example , how to achieve this please?
<kendo-grid
[data]="view | async"
[height]="833"
[resizable]="true"
[pageSize]="gridState.take" [skip]="gridState.skip" [sort]="gridState.sort"
[pageable]="true" [sortable]="true" [filterable]="true"
(dataStateChange)="onStateChange($event)"
(edit)="editHandler($event)" (remove)="removeHandler($event)"
(add)="addHandler($event)"
>
<ng-template kendoGridToolbarTemplate>
<button kendoGridAddCommand>Add new</button>
</ng-template>
<kendo-grid-column [width]="120" field="ID" title="ID" filter="numeric" ></kendo-grid-column>
<kendo-grid-column [width]="220" field="user_id" title="User ID"></kendo-grid-column>
<kendo-grid-command-column title="command" width="220">
<ng-template kendoGridCellTemplate>
<button kendoButton look="flat" [primary]="true"
onclick="location.href='https://www.example.net/link-fieldID-fieldUserID'">
comfirm user</button>
<button kendoGridEditCommand [primary]="true">Edit</button>
<button kendoGridRemoveCommand>Delete</button>
</ng-template>
</kendo-grid-command-column>
</kendo-grid>
Thanks