@progress/kendo-angular-grid
Version:
Kendo UI Grid for Angular - high performance data grid with paging, filtering, virtualization, CRUD, and more.
23 lines (22 loc) • 1.04 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Defines the settings for `position` property of the the Grid Toolbar Template. [See example](slug:toolbartemplate_grid#toc-setting-the-toolbar-position)
*
* 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.
*
* @example
* ```html
* <kendo-grid >
* <ng-template kendoGridToolbarTemplate position="bottom" let-position="position">
* <button (click)="onClick()">Custom action</button>
* </ng-template>
* </kendo-grid>
* ```
*/
export type ToolbarPosition = 'top' | 'bottom' | 'both';