Description
If you want to create a new row on your page, use the
<row> element.
Quick Example
..snip..- <wapl xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://wapl.wapple.net/wapl.xsd">
- <layout>
<row>
- <cell>
- <chars>
..snip..
Attributes
id
Specify an id for your row so that you can use a style sheet to change the way it looks.
Example:
<row id="myRowId">
class
Specify a class for your row so that you can use a style sheet to change the way it looks.
Example:
<row class="myRowClass">
pad_weight
Used to approximate a colspan attribute from HTML, this attribute determines which, if any, cells from a row will span extra cell columns defined elsewhere in the current layout. For example, a row of 3 cells with a pad weight of right, that follows a row with only two cells will have a larger cell on it's right.
Options: "left", "right", "middle"
Example:
<row pad_weight="right">
Detailed Example
..snip..- <wapl xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://wapl.wapple.net/wapl.xsd">
- <layout>
<row id="myRowId" class="myRowClass" pad_weight="right">
- <cell>
- <chars>
..snip..