Ticket #6674: 6674.diff
File 6674.diff, 979 bytes (added by , 15 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' ...>`` … … 88 95 89 96 Checkbox: ``<input type='checkbox' ...>`` 90 97 98 Takes one optional argument: 99 100 .. attribute:: CheckboxInput.check_test 101 102 A callable that takes the value of the CheckBoxInput 103 and returns ``True`` if the checkbox should be checked for 104 that value. 105 91 106 .. class:: Select 92 107 93 108 Select widget: ``<select><option ...>...</select>``