Skip to end of banner
Go to start of banner

Table Data

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

Description

Allows dynamic addition or deletion of rows in a table.

Any standard data macros other than {table-data} itself can be used inside its cells.

Parameters

Name

Required

Migratable to Cloud?

Default Value

Description

Name

Required

Migratable to Cloud?

Default Value

Description

[default]/name
 Yes
No

The name of the table. Must be unique.
initialRows
 Optional
No

The number of rows to have in the section initially. Saves us from having to hit "+" repeatedly.
order
 Optional
No
ascending
If set to "descending", the content will be sorted in reverse order, and new rows will be added to the top of the repeating section.
width
 Optional
No

The width of the field. e.g. "80%" or "500px".

Note: Only applicable for forms mode.

Notes

Due to the simplistic parser currently being used, you need to be careful with how you format the table. The main requirement is that any '|' characters which mark a table boundary must have whitespace on either side. Conversely, any other '|' characters must not have any whitespace around them. For example, in the markup below there are two errors:

  1. The Number column does not have any whitespace around the '|' markers
  2. The Date column does have whitespace inside the macro
{table-data:My Table}
|| Text||\Number ||Date||
| {text-data:Text}|{number-data:Number}0{number-data}|{date-data:Date| format=dd-MMM-yyyy} |
{table-data}

Correct formatting would look like this:

{table-data:My Table}
|| Text || Number || Date ||
| {text-data:Text} | {number-data:Number}0{number-data} | {date-data:Date|format=dd-MMM-yyyy} |
{table-data}

Tutorial Examples

  • No labels