Represents a table row.
Inherits: UIElement : UIElementBaseContent property: Cells
Name | Type | Description |
---|---|---|
Cells | Collection TableCell | A collection of cells in a row. |
Align | TextAlign? | Horizontal alignment for all cells in the row. Can be redefined in each cell individually. |
VAlign | VerticalAlign | Vertical text alignment. Can be redefined in each cell individually. |
Mark | Object | Binding only. Row marking. Details below. |
Base item properties |
The binding expression for the property Mark
should return
a text string, which represents an additional CSS class to add to the line.
The default theme supports the following line markings:
"danger", "error", "red" |
Row content |
"warning", "orange" |
Row content |
"success", "green" |
Row content |
"info", "cyan" |
Row content |
You can use the TableMarkerCell to add an additional marking element.
Note! Marking is just adding the CSS class to the line. This means that you are not limited to just the options shown.
For example, if the anchor property returns "danger bold"
, then the row will be highlighted with a red
background and displayed in bold.