Ticket #6674: widget-doc.diff
File widget-doc.diff, 979 bytes (added by , 16 years ago) |
---|
-
docs/ref/forms/widgets.txt
24 24 25 25 Password input: ``<input type='password' ...>`` 26 26 27 Takes one optional argument: 28 29 .. attribute:: PasswordInput.render_value 30 31 Determines whether the widget will have a value filled in when the 32 form is re-displayed after a validation error (default is ``True``). 33 27 34 .. class:: HiddenInput 28 35 29 36 Hidden input: ``<input type='hidden' ...>`` … … 87 94 88 95 Checkbox: ``<input type='checkbox' ...>`` 89 96 97 Takes one optional argument: 98 99 .. attribute:: CheckboxInput.check_test 100 101 A callable that takes the value of the CheckBoxInput 102 and returns ``True`` if the checkbox should be checked for 103 that value. 104 90 105 .. class:: Select 91 106 92 107 Select widget: ``<select><option ...>...</select>``