@progress/kendo-react-grid
Version:
React Data Grid (Table) provides 100+ ready-to-use data grid features. KendoReact Grid package
26 lines (25 loc) • 859 B
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { TableSelectableMode, TableSelectableSettings } from '@progress/kendo-react-data-tools';
/**
* Represents the available selection modes.
*/
export type GridSelectableMode = TableSelectableMode;
/**
* Represents the Grid selectable settings.
*/
export interface GridSelectableSettings extends TableSelectableSettings {
/**
* The available values are:
* * `single`
* * `multiple`
*
* @default "multiple"
*/
mode?: GridSelectableMode;
}