I have an outer parent <div />
container that contains a <Table />
element. I'd like to be able to scroll the <Table />
on the onWheel
event of the parent <div />
element, even if the mouse is not currently over the <Table />
.
I have a ref to the table element and an event handler listening for the onWheel event but I haven't been able to figure out how to forward that event down to the table.