New to Kendo UI for Angular? Start a free 30-day trial
ToolbarPosition
Defines the settings for position
property of the the Grid Toolbar Template. See example
The possible values are:
top
—Displays the Toolbar a the top of the Grid.bottom
—Displays the Toolbar at the bottom of the Grid.both
—Displays the Toolbar at the top and bottom of the Grid.
html
<kendo-grid >
<ng-template kendoGridToolbarTemplate position="bottom" let-position="position">
<button (click)="onClick()">Custom action</button>
</ng-template>
</kendo-grid>
type
ToolbarPosition = "top" | "bottom" | "both";