@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
18 lines (17 loc) • 393 B
TypeScript
/**
* Defines which types of Rows to exclude when rendering Format Columns, Action Columns and Badges
*/
export interface RowScope {
/**
* Exclude regular data rows
*/
ExcludeDataRows?: boolean;
/**
* Exclude Group Rows
*/
ExcludeGroupRows?: boolean;
/**
* Exclude Summary Rows (used in Row Summaries)
*/
ExcludeSummaryRows?: boolean;
}