Register AG GRID Master detail module in angular 17

95 Views Asked by At

I am getting below warning when I go to the component

AG Grid: unable to use masterDetail as the MasterDetailModule is not registered. Check if you have registered the module:
           
    import { ModuleRegistry } from '@ag-grid-community/core';
    import { MasterDetailModule } from '@ag-grid-enterprise/master-detail';
    
    ModuleRegistry.registerModules([ MasterDetailModule ]);

I tried registering it in the same module itself. My project does not have app.module.ts

1

There are 1 best solutions below

0
Sangram Patil On