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
post_handler
Table
confirm_slots = Table( title=gettext('Confirm planning changes'), auto__model=Slot, actions__confirm=Action.button( post_handler=confirm_slots__post_handler, ), )
The reason nothing happens is because the <button> will end up in the html without a surrounding <form>, which means there is nothing to submit.
<button>
<form>
I think we should have an error or warning for this. I found it surprising.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The reason nothing happens is because the
<button>
will end up in the html without a surrounding<form>
, which means there is nothing to submit.I think we should have an error or warning for this. I found it surprising.
The text was updated successfully, but these errors were encountered: