We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
h2o-wave 1.2.0
Minimum code example:
from h2o_wave import Q, app, main, ui @app("/") async def serve(q: Q): print(q.args) q.page['example'] = ui.form_card(box='1 1 2 2', items=[ ui.combobox( name="my_coolest_combobox", label="Selection", values=["choice1"], required=False, choices=["choice1", "choice2"], trigger=True, ), ui.button( name="i_am_a_button", label=( "Don't click me" ), primary=True, ) ]) await q.page.save()
When adding a new value to the combobox, I am getting: q.args: __wave_submission_name__:'i_am_a_button'
q.args: __wave_submission_name__:'i_am_a_button'
When selecting an existing value in the combobox, I am getting: q.args: __wave_submission_name__:'my_coolest_combobox'
q.args: __wave_submission_name__:'my_coolest_combobox'
In both cases, I would expect the __wave_submission_name__ to be `'my_coolest_combobox'``
__wave_submission_name__
The text was updated successfully, but these errors were encountered:
fix: Trigger multi combobox args after they are set, not before. #2342 (
6ff50ce
#2343)
Successfully merging a pull request may close this issue.
Wave SDK Version, OS
h2o-wave 1.2.0
Actual behavior
Minimum code example:
When adding a new value to the combobox, I am getting:
q.args: __wave_submission_name__:'i_am_a_button'
When selecting an existing value in the combobox, I am getting:
q.args: __wave_submission_name__:'my_coolest_combobox'
Expected behavior
In both cases, I would expect the
__wave_submission_name__
to be `'my_coolest_combobox'``Steps To Reproduce
The text was updated successfully, but these errors were encountered: