New to Kendo UI for Angular? Start a free 30-day trial
ToolbarPosition
Updated on Jun 18, 2025
Configures the position property for the Grid Toolbar Template. See example.
The possible values are:
top—Shows the Toolbar at the top of the Grid.bottom—Shows the Toolbar at the bottom of the Grid.both—Shows 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";