(self, type, name, attrs, index=None)
| 1537 | |
| 1538 | """ |
| 1539 | def __init__(self, type, name, attrs, index=None): |
| 1540 | ScalarControl.__init__(self, type, name, attrs, index) |
| 1541 | if self._value is None: |
| 1542 | self._value = "" |
| 1543 | |
| 1544 | def is_of_kind(self, kind): return kind in ["text", "clickable"] |
| 1545 |