iNamik WebFrames
Tag render


Renders a frame, section, or file. When rendering frames or files, you can define sections (see 'section' tag). When rendering a frame, the sections defined by the frame will be inherited and you can then define more sections. If a section definition has the same name as on of the inherited sections, it will override the inherited section, but only for the duration of the render.

Example:
Render File Example:
<wf:frame file="frame.jsp"/>
	<section ... >
</wf:frame>

Render Frame Example:
<wf:frame id="frame">
	<section name="section1" file="section1.jsp"/>
</wf:frame>
<wf:render frame="frame">
	<section name="section2" file="section2.jsp"/>
</wf:render>

Render Frame With Section Override Example:
<wf:frame id="frame">
	<section name="section1" file="section1.jsp"/>
</wf:frame>
<wf:render frame="frame">
	<section name="section1" file="override.jsp"/>
	<section name="section2" file="section2.jsp"/>
</wf:render>
		


Tag Information
Tag Classcom.inamik.webframes.RenderTag
TagExtraInfo ClassNone
Body ContentJSP
Display NameRender

Attributes
NameRequiredRequest-timeTypeDescription
framefalsetruejava.lang.String Points to the name of the previously defined 'frame' to render. See the 'frame' tag for details on defining frames.
sectionfalsetruejava.lang.String Points to the name of a previously defined 'section' to render
filefalsetruejava.lang.String Name of a file to render

Variables
No Variables Defined.


Output Generated by Tag Library Documentation Generator. Java, JSP, and JavaServer Pages are trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries. Copyright 2002-4 Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054, U.S.A. All Rights Reserved.