title widget for the table.
| 3209 | |
| 3210 | |
| 3211 | class TableTitle(TableItem, _MixinTextualWidget): |
| 3212 | """title widget for the table.""" |
| 3213 | |
| 3214 | def __init__(self, text='', *args, **kwargs): |
| 3215 | """ |
| 3216 | Args: |
| 3217 | text (str): |
| 3218 | kwargs: See Widget.__init__() |
| 3219 | """ |
| 3220 | super(TableTitle, self).__init__(text, *args, **kwargs) |
| 3221 | self.type = 'th' |
| 3222 | |
| 3223 | |
| 3224 | class Input(Widget): |