2013-07-22 12:03:46 +00:00
|
|
|
title: GridWidget
|
2013-08-25 20:41:00 +00:00
|
|
|
tags: widget
|
2013-07-22 12:03:46 +00:00
|
|
|
|
2013-10-23 22:12:19 +00:00
|
|
|
The video widget is not yet (re)implemented.
|
2013-07-22 12:03:46 +00:00
|
|
|
|
|
|
|
```
|
2013-10-23 22:12:19 +00:00
|
|
|
The grid widget assembles tiddlers into a tabular grid based on their titles. For example:
|
|
|
|
|
2013-07-22 12:03:46 +00:00
|
|
|
<$grid prefix="GridDemo" rows=3 cols=3/>
|
|
|
|
|
|
|
|
In this case, the following tiddlers will be rendered:
|
|
|
|
|
|
|
|
|GridDemo_A_1 |GridDemo_A_2 |GridDemo_A_3 |
|
|
|
|
|GridDemo_B_1 |GridDemo_B_2 |GridDemo_B_3 |
|
|
|
|
|GridDemo_C_1 |GridDemo_C_2 |GridDemo_C_3 |
|
|
|
|
|
|
|
|
The result is:
|
|
|
|
|
|
|
|
<$grid prefix="GridDemo" rows=3 cols=3/>
|
2013-10-23 22:12:19 +00:00
|
|
|
```
|