grid-pro.gridpro.gridoptionsconfig
Home > @genesislcap/grid-pro > GridPro > gridOptionsConfig
GridPro.gridOptionsConfig property
Injectable config that allows to change grid options on an app level basis To modify options, register instance of the config in DOM container that is above the grid or on the top level of the application, so it applies to all grids.
Signature:
gridOptionsConfig: GridOptionsConfig;
Example
DI.getOrCreateDOMContainer().register([
Registration.instance<GridOptionsConfig>(GridOptionsConfig, {
headerHeight: 50,
}),
]);