ngx-datatable mouse hover rendering issue
Asked Answered
P

1

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 ?

Phony answered 22/1, 2018 at 8:16 Comment(1)
Have you got any fixes? Coz I am also stuck in the sameChinchilla
R
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.

Runagate answered 24/3, 2019 at 10:12 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.