This commit is contained in:
2024-01-23 15:58:56 +08:00
parent 09e62c4304
commit 07f87bfb9d
7 changed files with 33 additions and 13 deletions

View File

@ -37,8 +37,8 @@ export interface GridColumnDefinition {
iconClassName?: string | ((item: GridItem | any) => string);
text?: string;
tooltip?: string | ((item: GridItem | any) => string);
onallchecked?: (this: Grid, col: GridColumnDefinition, flag: boolean) => void;
onchanged?: (this: Grid, item: GridItem | any, value: boolean | any) => void;
onAllChecked?: (this: Grid, col: GridColumnDefinition, flag: boolean) => void;
onChanged?: (this: Grid, item: GridItem | any, value: boolean | any, oldValue: any, e?: any) => void;
}
export class GridColumn {