@progress/kendo-react-grid
Version:
React Data Grid (Table) provides 100+ ready-to-use data grid features. KendoReact Grid package
26 lines (25 loc) • 980 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
*-------------------------------------------------------------------------------------------
*/
/**
* Represents the settings for the row reordering functionality of the Grid.
*/
export type GridRowReorderSettings = {
/**
* Determines if the row reordering functionality is enabled.
*
* @default false
*/
enabled?: boolean;
/**
* Determines what the text of the drag clue will be.
* Can also be a function giving the dataItem as an argument and returning a new custom drag clue as a ReactNode.
*
* Default value will be the text of the first visible data column of the row.
*/
dragClue?: string | ((dataItem: any) => React.ReactNode);
};