Hi, is there a nice way to capture keyboard events for a mosaic tile ?
One way is in renderTile, <div tabIndex={0} onKeyXxx={onKeyXxxHandler}> can wrap <MosaicWindow>
and we can propagate the keyboard events manually.
Must have tabIndex attribute to make <div> focusable
Hi, is there a nice way to capture keyboard events for a mosaic tile ?
One way is in renderTile,
<div tabIndex={0} onKeyXxx={onKeyXxxHandler}>
can wrap<MosaicWindow>
and we can propagate the keyboard events manually. Must have tabIndex attribute to make<div>
focusable