Python wtforms.widgets.HiddenInput() Examples
The following are 2
code examples of wtforms.widgets.HiddenInput().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
wtforms.widgets
, or try the search function
.
Example #1
Source File: form.py From jbox with MIT License | 5 votes |
def _is_hidden(field): """Detect if the field is hidden.""" if isinstance(field, HiddenField): return True if isinstance(field.widget, HiddenInput): return True return False
Example #2
Source File: form.py From RSSNewsGAE with Apache License 2.0 | 5 votes |
def hidden_tag(self, *fields): """Render the form's hidden fields in one call. A field is considered hidden if it uses the :class:`~wtforms.widgets.HiddenInput` widget. If ``fields`` are given, only render the given fields that are hidden. If a string is passed, render the field with that name if it exists. .. versionchanged:: 0.13 No longer wraps inputs in hidden div. This is valid HTML 5. .. versionchanged:: 0.13 Skip passed fields that aren't hidden. Skip passed names that don't exist. """ def hidden_fields(fields): for f in fields: if isinstance(f, string_types): f = getattr(self, f, None) if f is None or not isinstance(f.widget, HiddenInput): continue yield f return Markup( u'\n'.join(text_type(f) for f in hidden_fields(fields or self)) )