7

I am using Ngx-datatable with Angular. https://github.com/swimlane/ngx-datatable

Its loading data without any problems.

The problem I have is ngx-datadatable is rendering whenever I move the mouse pointer over data rows.

Is there anyway I can disable it ?

Marcus Lind
  • 10,374
  • 7
  • 58
  • 112
Ashhab
  • 199
  • 1
  • 5

1 Answers1

3

I have faced this bug too. my solution was pretty simple, just add this into datatable.component.ts:

window.addEventListener('mouseenter', function (event) {
    event.stopPropagation();
}, true);

you may want to check if they didn't solve this in latest versions.

chana
  • 183
  • 2
  • 19