@progress/kendo-react-grid
Version:
React Data Grid (Table) provides 100+ ready-to-use data grid features. KendoReact Grid package
37 lines (36 loc) • 1.12 kB
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
/**
* Represents the available types for the `GridContextMenuAnchorPart`.
*
* The available anchor parts are:
* - `head`
* - `body`
*/
export declare enum GridContextMenuAnchorPart {
head = "head",
body = "body"
}
/**
* Represents the available predefined items names for the `GridContextMenu` items.
*/
export declare enum GridContextMenuItemNames {
create = "create",
edit = "edit",
delete = "delete",
select = "select",
copySelection = "copySelection",
copySelectionNoHeaders = "copySelectionNoHeaders",
paste = "paste",
reorderRow = "reorderRow",
exportPDF = "exportPDF",
exportExcel = "exportExcel",
separator = "separator",
sortAsc = "sortAsc",
sortDesc = "sortDesc"
}