-
Hey guys 👋, Does anyone know how to prevent closing the Filter Menu on press ENTER? Looks like that has also nothing to do with the tanstack react-table implementation. Thanks guys!! Best, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @reqyou the https://codesandbox.io/p/sandbox/at-custom-column-filter-forked-1shce7?file=%2Fsrc%2FApp.js |
Beta Was this translation helpful? Give feedback.
Hi @reqyou
the
keydown
event of the DateRangePicker is bubbling up to the popover. So to prevent closing the popover you can callevent.stopPropagation
in the respective event handler.https://codesandbox.io/p/sandbox/at-custom-column-filter-forked-1shce7?file=%2Fsrc%2FApp.js