Each section of a table row or column is called a cell. Cells can contain a wide variety of widgets.
Common properties
Class
The class property allows you to specify a cascading style sheet (CSS) class for the widget. This class will be applied to the widget in the browser and the widget will get the corresponding styling. You can use more than one class, separated by a space. The classes should be classes from the theme that is used in the project. Using the class property overrules the default styling of the widget.
Note that the styling is applied in the following order:
1. Default styling defined by the theme the project uses.
2. The 'Class' property of the widget.
3. The 'Style' property of the widget.
1. Default styling defined by the theme the project uses.
2. The 'Class' property of the widget.
3. The 'Style' property of the widget.
Style
The style property allows you to specify additional CSS styling. If a class is also specified, this styling is applied after the class.
background-color:blue;
This will result in a blue background
General properties
Cell type
Indicates the type of the cell. Two types are supported:
Value | Description | |
---|---|---|
Normal | Normal cell containing data ( | ). |
Header | Header cell containing captions ( | ). |
Default value: Normal