Our flexible Kanban board for managing tasks with drag drop


Post 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')
         }
})

Post 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


Post Reply