ag-grid-enterprise
Version:
ag-Grid Enterprise Features
18 lines (12 loc) • 496 B
text/typescript
import {Bean, IStatusPanelComp, IStatusBarService} from 'ag-grid-community';
('statusBarService')
export class StatusBarService implements IStatusBarService {
private allComponents: { [p: string]: IStatusPanelComp } = {};
constructor() {}
public registerStatusPanel(key: string, component: IStatusPanelComp): void {
this.allComponents[key] = component;
}
public getStatusPanel(key: string): IStatusPanelComp {
return this.allComponents[key];
}
}