Page 1 of 1

taskBoard on scroll

Posted: Fri Nov 04, 2022 12:27 pm
by rodel.ocfemia

Hi,
How to handle scroll event on taskboard?
I tried this but it's not working.

taskBoard.on({
         scroll() {
            console.log('scroll')
         }
})

Re: taskBoard on scroll

Posted: Fri Nov 04, 2022 2:29 pm
by tasnim

You need to use native JS events
As an example

document.querySelector('.b-taskboard-column .b-taskboard-column-body').addEventListener('scroll', () => console.log('fire'));

All the best :),
Tasnim