- Notifications
You must be signed in to change notification settings - Fork814
Function on close of SelectMenu modal#1320
-
I have seen thedescription of Is there a way for me to trigger a custom function upon the close of a |
BetaWas this translation helpful?Give feedback.
All reactions
Hi@maskott! I believe theonClose prop is what you're looking for. It's not obvious from the docs, butSelectMenuProps extends most of thePopoverProps, includingonClose (the TS definitions should reflect this!):
exportinterfaceSelectMenuPropsextendsOmit<PopoverProps,'position'|'content'>{/** * The title of the Select Menu. */title?:string// ... more propsexportinterfacePopoverProps{// ... more propsonOpen?:()=>voidonClose?:()=>void}
Hopefully this helps!
Replies: 1 comment
-
Hi@maskott! I believe the exportinterfaceSelectMenuPropsextendsOmit<PopoverProps,'position'|'content'>{/** * The title of the Select Menu. */title?:string// ... more propsexportinterfacePopoverProps{// ... more propsonOpen?:()=>voidonClose?:()=>void} Hopefully this helps! |
BetaWas this translation helpful?Give feedback.
All reactions
👍 1