Represents a sheet row.
Inherits: UIElement : UIElementBaseContent property: Cells
Name | Type | Description |
---|---|---|
Cells | SheetCell collection | A collection of cells in a row. |
RowStyle | RowStyle |
Row display style. Possible values:
|
Align | TextAlign? | Horizontal alignment for all cells in the row. Can be redefined in each cell individually. |
Mark | Object | Binding only. Row marking. Details below. |
Base item properties |
The binding expression for the Mark
property must return a text string, which represents an
additional css class to add to the string. The default theme supports the following options of line markings:
"danger", "error", "red" |
Row content |
"warning", "orange" |
Row content |
"success", "green" |
Row content |
"info", "cyan" |
Row content |
"gray" |
Row content |
Note! The marking simply adds the css class to the row. This means that you
are not limited to just the options specified. For example, if the property
of the binding returns "danger bold"
, then the row will be
highlighted with a red background and displayed in a semibold font.