<embedview>

Mechanism to allow one view, from the same or a different board, to be embedded in another; rendered as <iframe>. The embedded view works like any other view to include view linking, automatic refreshing when new data is added, and so forth. However, the new data indicator on the main menu does not appear for the board when new data is added to an embedded view.

Remember, if you are placing this tag in a display view, make sure it is outside the <eocrepeatallrecords> tags. If inside the tags, the embedded view may not show up or, in contrast, may show up too many times.

<embedview> attributes
Attribute Allowed Values Requirements Description
board %boardname Optional Name of the board that contains the view to be embedded. If not specified, the current board is used.
class CDATA Optional CSS class identifiers; a pass-through attribute that allows the resulting HTML container's class to be specified.
enablefooter (false|true)false Optional Specifies whether or not to display the board footer as part of the embedded view to allow paging. The default is false.
frameborder (1|0)1 Implied Request frame borders.
height LENGTH Optional Frame height of the embedded view, in pixels or percentage.
id CDATA Optional ID of the rendered <iframe>. This attribute is used in conjunction with the <targetId> attribute and <viewlink> tag.
scrolling (auto|no|yes)auto Implied Determines whether to allow scrolling if the content does not fit in the defined embedded view. The default is auto.
style CDATA Optional Inline style information; a pass-through attribute that allows the resulting HTML container's style to be specified.
view %viewname Required Name of the view to be embedded.
width LENGTH Optional Frame width of the embedded view, in pixels or percentage.

Example

Copy Code
<embedview board="Significant Events" view="Display"
 enablefooter="false" width="100%" height="50" scrolling="true"></embedview>