I need to trigger a event whenever changes in column picker in grid #914
-
I have used (onColumnsChanged)="changed($event)" in html and changed(event:any) method in ts.But it is not triggering event and method is not getting called. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
That event is to be used on the Angular-Slickgrid/src/app/examples/grid-menu.component.ts Lines 72 to 78 in ee3bf0e Please consider asking your questions on Stack Overflow where more people can answer |
Beta Was this translation helpful? Give feedback.
That event is to be used on the
columnPicker
and/orgridMenu
grid options, you can't use it in the html it's not exposed as a grid event because it's not a grid thing, it's a column picker or grid menu thing so that's where you'll find it. You can see it in Example 9 (console log). I updated the Column Picker - Wiki as wellAngular-Slickgrid/src/app/examples/grid-menu.component.ts
Lines 72 to 78 in ee3bf0e
Please consider asking your que…