(self, type, name, attrs, index=None)
| 1397 | |
| 1398 | """ |
| 1399 | def __init__(self, type, name, attrs, index=None): |
| 1400 | ScalarControl.__init__(self, type, name, attrs, index) |
| 1401 | if self.type == "hidden": self.readonly = True |
| 1402 | if self._value is None: |
| 1403 | self._value = "" |
| 1404 | |
| 1405 | def is_of_kind(self, kind): return kind == "text" |
| 1406 |