selectAllFeature.d.ts 862 B

1234567891011121314151617181920212223242526
  1. import { AgCheckbox } from "../../widgets/agCheckbox";
  2. import { BeanStub } from "../../context/beanStub";
  3. import { Column } from "../../entities/column";
  4. export declare class SelectAllFeature extends BeanStub {
  5. private gridApi;
  6. private columnApi;
  7. private rowModel;
  8. private selectionController;
  9. private gridOptionsWrapper;
  10. private cbSelectAllVisible;
  11. private processingEventFromCheckbox;
  12. private column;
  13. private filteredOnly;
  14. private cbSelectAll;
  15. constructor(cbSelectAll: AgCheckbox, column: Column);
  16. private postConstruct;
  17. private showOrHideSelectAll;
  18. private onModelChanged;
  19. private onSelectionChanged;
  20. private getNextCheckboxState;
  21. private updateStateOfCheckbox;
  22. private getSelectionCount;
  23. private checkRightRowModelType;
  24. private onCbSelectAll;
  25. private isCheckboxSelection;
  26. }