Manange "enter" event on button

I just saw that it’s been implemented! Super nice. :smiley: https://github.com/plotly/dash-core-components/pull/326

2 Likes

Using the n_submit for input with dash-core-components==0.35.0 works great :grinning:

1 Like

Actually, in the current version, the dcc.input has a feature called “debounce”, which can well solve the problem.
just add “debounce=True”, in the dcc.input. you can also check
https://dash.plotly.com/dash-core-components/input
for more samples.

6 Likes