How to get the properties of the 'resize' event from the ngx-datatable

2.1k Views Asked by At

I have created an event handler for the resize event for the ngx-datatable in Angular 10. It seems to trigger correctly, but how do i get to the actual properties?

The output payload (i.e. properties) of the event is

{
  column,
  newValue
}

but where are they? I have displayed the event in chrome's dev tools, it seems to fire when the data table is resized (i.e. a column width changes), and the Event parameter is displayed along with the properties, but where are the column and newValue values?

I've downloaded the source code of the demos and gone thru the source code and can't seem to find anything.

enter image description here

My code snippets are like:

Angular Template

...
  <div>
    <ngx-datatable #myTable (resize)="onColumnResize($event)">
        <ngx-datatable-column
          ...
        </ngx-datatable-column>
        <ngx-datatable-column
          ...
        </ngx-datatable-column>
    </ngx-datatable>
  </div>
...

Component

export class ResponsiveComponent {
  constructor( private renderer : Renderer2) {
    ...
  }

  onColumnResize(resizeEvent) {
    console.log(resizeEvent);
  }

}

I've effectively been modifying the Responsive example (not that that should really matter). I've also tried console.log(resizeEvent.column) and a few other variants but the browser dev tools says that it is undefined.

My setup is Chrome 87 (up to date) and as follows:

enter image description here

1

There are 1 best solutions below

5
On

I tested it with latest available version and event seems to be emited correctly. Please refer the sample implementation at Code Sandbox

enter image description here