ag-grid-enterprise
Version:
ag-Grid Enterprise Features
16 lines (11 loc) • 505 B
text/typescript
import {Bean, ICompFactory, Component, Autowired, Context} from "ag-grid-community";
import {RowGroupDropZonePanel} from "./sideBar/providedPanels/columns/panels/rowGroupDropZonePanel";
('rowGroupCompFactory')
export class RowGroupCompFactory implements ICompFactory {
('context') private context: Context;
public create(): Component {
let rowGroupComp = new RowGroupDropZonePanel(true);
this.context.wireBean(rowGroupComp);
return rowGroupComp;
}
}