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 ?
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With