<rw:dataArea>
The rw:dataArea
tag provides a placeholder for report data that
is inserted by the Report Wizard. It can optionally be used in conjunction with
the rw:style
tag. The rw:dataArea
tag is used during the report design process when the JSP page is created, and
has no effect at runtime.
<rw:dataArea id="data_area_id" >
[tag body]
</rw:dataArea>
Attribute Value |
Description |
|
A mandatory attribute uniquely identifying
the tag within the template JSP file ( |
<rw:dataArea id="defaultLayout">
<!-- Report Wizard inserts report block here! -->
</rw:dataArea>
At runtime, the rw:dataArea
tag has no effect, and the body of
the tag is simply evaluated and returned. In the preceding example, the output would
be:
<!-- Report Wizard inserts report block here! -->