Clear the value attributes of all controls in the form. See HTMLForm.clear.__doc__.
(self)
| 2985 | control.readonly = bool(readonly) |
| 2986 | |
| 2987 | def clear_all(self): |
| 2988 | """Clear the value attributes of all controls in the form. |
| 2989 | |
| 2990 | See HTMLForm.clear.__doc__. |
| 2991 | |
| 2992 | """ |
| 2993 | for control in self.controls: |
| 2994 | control.clear() |
| 2995 | |
| 2996 | def clear(self, |
| 2997 | name=None, type=None, kind=None, id=None, nr=None, label=None): |