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
date
The form object doesn't submit when date is changed. This makes it hard to use date in inline forms.
inline
class FilterForm(pydantic.BaseModel): country: str = Field(json_schema_extra={'search_url': '/api/forms/search', 'placeholder': 'Filter by Country...'}) date_tung: date = Field(title='Date Tung', json_schema_extra={'format': 'date'}) [...] c.ModelForm( model=FilterForm, submit_url='.', initial=filter_form_initial, method='GOTO', submit_on_change=True, display_mode='inline', ), [...]
The text was updated successfully, but these errors were encountered:
onchange
potentiallly a duplicate of #254
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
The form object doesn't submit when date is changed. This makes it hard to use date in
inline
forms.The text was updated successfully, but these errors were encountered: