<sasads:RowFormat>

Custom Tag for creating a RowFormat. If no attributes are set, the format(bodytext) will become the default format and will be applied to each row. If just the startRow attribute is set, then the format will be applied only to the given row. If repeatRow attribute is set, then the format will be repeated every n rows. If multiple row formats are applied, then the repeat row formats will override the default row format. If isColumnHeading attribute is set to true, then the format is applied to the column headings and all otherr attribute are ignore. If the isBeginRowFormat attribute is set to true, then the format is used to begin each new Table row and takes into consideration the startRow and repeatRow attributes.

This tag must be nested within a sasads:Table tag.

Syntax

<sasads:RowFormat
   [id="value"]
   [isBeginRowFormat="true|false"]
   [isColumnHeading="true|false"]
   [isEndRowFormat="true|false"]
   [locale="java.util.Locale"]
   [repeatRow="int"]
   [startRow="int"]>
      format to apply; can be markup language and/or valid meta data tags
</sasads:RowFormat>

Attributes

idCase-sensitive name used to identify the object instance.
isBeginRowFormatTrue if the format should be used as a row ending format
isColumnHeadingTrue if the format should be used as a column heading format
isEndRowFormatTrue if the format should be used as a row ending format
locale
repeatRowThe number of rows until the format is repeated
startRowThe 1-based row number that will first use the format

More Information

If you need to subclass the tag handler class for the sasads:RowFormat tag, extend com.sas.taglib.servlet.beans.RowFormatTag.