4.5 :: Rows

Description


If you want to create a new row on your page, use the <row> element.

Quick Example


..snip..
  1.  <wapl xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://wapl.wapple.net/wapl.xsd">
  2.   <layout>
  3.   <row>
  4.   <cell>
  5.   <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..
  1.  <wapl xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://wapl.wapple.net/wapl.xsd">
  2.   <layout>
  3.   <row id="myRowId" class="myRowClass" pad_weight="right">
  4.   <cell>
  5.   <chars>
..snip..

Contents