@progress/kendo-react-grid
Version:
React Data Grid (Table) provides 100+ ready-to-use data grid features. KendoReact Grid package
36 lines (35 loc) • 1.37 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 { default as React } from 'react';
import { GridColumnState } from '../../interfaces/index.js';
/**
* @hidden
*/
type GridAdaptiveToolbarCheckboxFilterProps = {
filtered: GridColumnState[];
computedShow?: boolean;
expandState?: any;
currentData: any;
uniqueFilterValues: any;
searchBox?: any;
children?: React.ReactNode;
renderTitle: (column: GridColumnState) => React.ReactNode;
onBackView?: () => void;
isAllSelected: () => boolean;
handleCheckBoxChange: (event: any, value: any) => void;
clear: (event: React.FormEvent<HTMLFormElement>) => void;
submit?: (event: React.FormEvent<HTMLFormElement>) => void;
onClose?: () => void;
onFilterExpand: (event: React.MouseEvent<HTMLElement>, column: GridColumnState) => void;
handleClearAllFilters: (event: any) => void;
};
/**
* @hidden
*/
export declare const GridAdaptiveToolbarCheckboxFilter: (props: GridAdaptiveToolbarCheckboxFilterProps) => React.JSX.Element;
export {};