Using the Pager in Jetcaster and trying to introduce a draggable component in one of the Pages of the Pager. What’s the best way to make the draggable component in the Page completely consume the pointer events so that the parent Pager doesn’t react to them?
Figured out that this needs
PointerInputChange.consumePositionChange()
on the draggable item so that the changes are consumed there before the parent Pager can intercept.