Interface AbstractCellTable.Style
- Enclosing class:
AbstractCellTable<T>
public static interface AbstractCellTable.Style
Styles used by this widget.
-
Method Summary
Modifier and TypeMethodDescriptioncell()
Applied to every cell.evenRow()
Applied to even rows.Applied to cells in even rows.Applied to the first column.Applied to the first column footers.Applied to the first column headers.footer()
Applied to footers cells.header()
Applied to headers cells.Applied to the hovered row.Applied to the cells in the hovered row.Applied to the keyboard selected cell.Applied to the keyboard selected row.Applied to the cells in the keyboard selected row.Applied to the last column.Applied to the last column footers.Applied to the last column headers.oddRow()
Applied to odd rows.Applied to cells in odd rows.Applied to selected rows.Applied to cells in selected rows.Applied to header cells that are sortable.Applied to header cells that are sorted in ascending order.Applied to header cells that are sorted in descending order.widget()
Applied to the table.
-
Method Details
-
cell
String cell()Applied to every cell. -
evenRow
String evenRow()Applied to even rows. -
evenRowCell
String evenRowCell()Applied to cells in even rows. -
firstColumn
String firstColumn()Applied to the first column. -
firstColumnHeader
String firstColumnHeader()Applied to the first column headers. -
header
String header()Applied to headers cells. -
hoveredRow
String hoveredRow()Applied to the hovered row. -
hoveredRowCell
String hoveredRowCell()Applied to the cells in the hovered row. -
keyboardSelectedCell
String keyboardSelectedCell()Applied to the keyboard selected cell. -
keyboardSelectedRow
String keyboardSelectedRow()Applied to the keyboard selected row. -
keyboardSelectedRowCell
String keyboardSelectedRowCell()Applied to the cells in the keyboard selected row. -
lastColumn
String lastColumn()Applied to the last column. -
lastColumnHeader
String lastColumnHeader()Applied to the last column headers. -
oddRow
String oddRow()Applied to odd rows. -
oddRowCell
String oddRowCell()Applied to cells in odd rows. -
selectedRow
String selectedRow()Applied to selected rows. -
selectedRowCell
String selectedRowCell()Applied to cells in selected rows. -
sortableHeader
String sortableHeader()Applied to header cells that are sortable. -
sortedHeaderAscending
String sortedHeaderAscending()Applied to header cells that are sorted in ascending order. -
sortedHeaderDescending
String sortedHeaderDescending()Applied to header cells that are sorted in descending order. -
widget
String widget()Applied to the table.
-