public TableRow(BootRowCellTheme theme, params Union <string, Widget, HTMLElement>[] typos) : base(new HTMLTableRowElement() { ClassName = theme.ToString("G") }) { TableCell.AppendDataRow(this, typos); }
public TableHeaderRow(BootRowCellTheme theme, params Union <string, Control, HTMLElement>[] typos) : base(new HTMLTableRowElement() { ClassName = theme.ToString("G") }) { TableHeaderCell.AppendHeaderDataRow(this, typos); }
public TableCell(BootRowCellTheme theme, params Union <string, Widget, HTMLElement>[] typos) : base(new HTMLTableDataCellElement() { ClassName = theme.ToString("G") }, typos) { }
public TableHeaderCell(BootRowCellTheme theme, params Union <string, Control, HTMLElement>[] typos) : base(new HTMLTableHeaderCellElement() { ClassName = theme.ToString("G") }, typos) { }