morerows More Rows (OASIS Table Model)

Indicates whether additional rows are needed for a specified vertically-spanning cell

Usage/Remarks

The official OASIS Exchange (CALS) Table Model documentation can be found at http://www.oasis-open.org/specs/a502.htm
OPTIONAL on element: <oasis:entry>
Value Meaning Behavior
A number The number of additional rows the cell (<oasis:entry>) should span The value of the attribute should be interpreted by the processing system as the number of rows, plus one, required by a vertically-spanning cell.
Restriction If no value is specified, the value is assumed to be “1”.
Tagged Sample

Table cells vertically-spanning an additional row

...
<oasis:tgroup cols="7">
<oasis:colspec colnum="1" colname="col1" align="center" colsep="1"/>
<oasis:colspec colnum="2" colname="col2" align="center" colsep="1"/>
<oasis:colspec colnum="3" colname="col3" align="center" colsep="1"/>
<oasis:colspec colnum="4" colname="col4" align="center" colsep="1"/>
<oasis:colspec colnum="5" colname="col5" align="center" colsep="1" colwidth="2"/>
<oasis:colspec colnum="6" colname="col6" align="center" colsep="1"/>
<oasis:colspec colnum="7" colname="col7" align="char" charoff="30" char="."/>
<oasis:thead valign="middle">
<oasis:row>
<oasis:entry morerows="1"></oasis:entry>
<oasis:entry namest="col2" nameend="col4" align="center"
morerows="1">Institutional care</oasis:entry>
<oasis:entry morerows="1"></oasis:entry>
<oasis:entry namest="col6" nameend="col7" align="center"
morerows="1">&#x2003;Bed use (days)</oasis:entry>
</oasis:row>
...
</oasis:thead>
<oasis:tbody valign="middle">...</oasis:tbody>
</oasis:tgroup>
...