Table of Contents
Table
A Table displays multiple widgets inside a table structure. Therefore three tags are required: table, row and col.
Table initializes the table, row adds a new row and col adds a new column.
Attributes
Table
| Name | Allowed Values | Description |
|---|---|---|
| width | Length- or Percentage | Sets the width of a widget |
| css | CSS Class Name | Sets a new style |
| tooltip | Text | Sets a tooltip text |
Col
| Name | Erlaubte Werte | Beschreibung |
|---|---|---|
| width | Length- or Percentage | Sets the width of a widget |
| css | CSS Class Name | Sets a new style |
| tooltip | Text | Sets a tooltip text |
| rowspan | Number | Number of rows of a cell |
| colspan | Number | Number of cols of a cell |
| align | “left”, “center” o. “right” | Alignment of a cell |
Example
XML
<table> <row> <col><label>Label:</label></col> <col><label id="label" /></col> </row> <row> <col><label>Textbox:</label></col> <col><textbox id="textbox" /></col> </row> </table>
Result
Links
You could leave a comment if you were logged in.
