Search code examples
javascriptangulartypescriptag-grid-angular

Ag Grid Module binding


Can't bind to modules since it isn't a known property of ag-grid-angular

enter image description here

<ag-grid-angular
      #agGrid
      style="width: 100%; height: 100%;"
      id="myGrid"
      class="ag-theme-balham"
      [modules]="modules"
      [columnDefs]="columnDefs"
      [masterDetail]="true"
      [detailCellRendererParams]="detailCellRendererParams"
      [rowData]="rowData"
      (firstDataRendered)="onFirstDataRendered($event)"
      (gridReady)="onGridReady($event)"
    ></ag-grid-angular>


Solution

  • To Resolve the issue for "Can not found Module[]"=> Use any[] array eg. public modules:any[] = AllCommunityModules;