(self, *args, **kwargs)
| 1736 | def css_grid_gap(self): del self.style['grid-gap'] |
| 1737 | |
| 1738 | def __init__(self, *args, **kwargs): |
| 1739 | super(GridBox, self).__init__(*args, **kwargs) |
| 1740 | self.style.update({'display': 'grid'}) |
| 1741 | |
| 1742 | def define_grid(self, matrix): |
| 1743 | """Populates the Table with a list of tuples of strings. |