Replies: 2 comments
-
|
Moved from discussion to issues: #3964 |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Hey @duyle112 , Currently, you have to implement this manually (Example). Please be aware that nesting a Checkbox there is not the intended use case and is semantically incorrect. However, to solve this properly, we've just created a ticket (#5126) to add a native Checkbox variant to the FlyoutMenu. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
In case having checkbox group inside OnyxFlyoutMenu, when a user clicks on an item within the OnyxFlyoutMenu component, the entire menu unexpectedly disappears instead of maintaining its open state or closing gracefully based on the intended behavior.
Expected Behavior
Actual Behavior
Steps to reproduce
Imagine having filter function in OnyxDataGrid header column with multiple selection. I am using custom features .e.g.:
const withCustomFeature = createFeature(() => ({ name: Symbol("name"), header: { actions: () => [ { menuItems: [ h(OnyxCheckboxGroup , {options: options, withCheckAll: true}), ], showFlyoutMenu: true, }, ], }, }));Beta Was this translation helpful? Give feedback.
All reactions