View in #help on Slack
@Parikshit_Prasai: Hi everyone.
Is there a way to enable page scroll, when the mouse is over an enabled element? I have a list of thumbnails that are scrollable using the scroll bar and mouse wheel. If the mouse scroll is done over the thumbnail (which is a stack viewport with single imageId in the stack), the thumbnail panel won’t scroll. I’m guessing, the stack viewport prevents the scroll event from propagating any further. Is there a way to prevent that?
@Adrien: You could set CSS mouse-pointer-events to none on the viewport? There’s also an exemple in the docs of rendering once to a canvas iirc
@Parikshit_Prasai: Thank you @Adrien!
It worked!