I have an issue with the Angular Slickgrid library, To modify the sorting button function I need to use the onAngularGridCreated event, (which, I assume) return the instance of my grid. But when I add the following line to my angular-slickgrid element:
<angular-slickgrid gridId="{{this.gridData.id}}"
[columnDefinitions]="columnDefinitions"
[gridOptions]="gridOptions"
[dataset]="dataset"
(onAngularGridCreated)="angularGridReady($event.detail)"
>
</angular-slickgrid>
I get this error:
Event onAngularGridCreated is not emitted by any applicable directives nor by angular-slickgrid element
Even when looking at the Documentation I cannot figure out how to make it work.
Here is my import of angular-slick grid in app-modules:
imports: [
...
AngularSlickgridModule.forRoot({
locales: localeFrench
})
],