@progress/kendo-angular-grid
Version:
Kendo UI Grid for Angular - high performance data grid with paging, filtering, virtualization, CRUD, and more.
25 lines (24 loc) • 1.08 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* The settings for the grouping functionality of the Grid.
*/
export interface GroupableSettings {
/**
* Determines if grouping by dragging and dropping the column headers is allowed.
*/
enabled?: boolean;
/**
* The text that is displayed when the grouping area is empty. The default value is
* **Drag a column header and drop it here to group by that column**. If set to `true`,
* the user can group the Grid by dragging the column header cells. By default,
* grouping is disabled.
*/
emptyText?: string;
/**
* Determines if the group footer template is visible when the group is collapsed. The default value is `false`.
*/
showFooter: boolean;
}