DEV Community

Discussion on: Scrolling with Page Up/Down Keys in React-Window

Collapse
 
dance2die profile image
Sung M. Kim • Edited

Thank you, Petyo for helping me understand the "why" the problem occurred.

I've tried the updated list and it scrolls with keys naturally :)

And to rephrase my understanding, when a user clicks on an element, keyevent is bound to the item, and when scrolled away from the viewport, the keyevent is no longer triggered?

Collapse
 
petyosi profile image
Petyo Ivanov

Your understanding is correct. The scrolling away from the viewport is not the problem, but rather the fact that the virtualization mechanism removes the element once it is no longer visible.

Once this happens, the browser will emit subsequent keyboard events from the document element.

Thread Thread
 
dance2die profile image
Sung M. Kim

Thank you again for clearing up my understanding, Petyo :)