@progress/kendo-vue-grid
Version:
27 lines (26 loc) • 1.09 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
*-------------------------------------------------------------------------------------------
*/
import { GroupDescriptor } from '@progress/kendo-data-query';
import { GridColumnMenuBaseProps } from './GridColumnMenuBaseProps';
/**
* The props passed to the ColumnMenu group component.
*/
export interface GridColumnMenuGroupBaseProps extends GridColumnMenuBaseProps {
/**
* The groupable option of the column.
*/
groupable?: boolean;
/**
* The current group state of the Grid. It takes value of type [GroupDescriptor]({% slug api_kendo-data-query_groupdescriptor %})[]
*/
group?: GroupDescriptor[];
/**
* The method that will be called to notify the parent Grid about a group change.
*/
onGroupchange?: (groups: GroupDescriptor[], event: any) => void;
}