differentiating InputText keyup.enter and focusout
Hi. We have several dialog boxes with InputText that we'd like to have the following default behavior:
- upon "keyup.enter" : accept input
- upon "focusout" : discard input
I can't figure if InputText can allow this as
on_value
is event-agnostic, and there's only update_events
to restrict the call to this callback. Thus if update_events=["keyup.enter"] I lack a means to catch focusout...
Any ideas on how to achieve this?4 Replies
I guess use_effect is the approach that could work.
For use with a dialog you may want to take a look at https://py.cafe/maartenbreddels/solara-hotkeys
PyCafe - Solara - HotKey Event Handler with Dialog in Solara
Create & Share Streamlit, Dash and Python Apps Online.
otherwise, instead of use_effect, you could use the (undocumented solara.v.use_event - you can find several examples in our repo)
Does that solve your problem?
yes thank you