Show TOC

Background documentationIViewContent Locate this document in the navigation structure

 

Indicates where to display the iView's content within a custom tray.

Coordinating Tags

The tag must be nested in the following tag:

containerWithTrayDesign

Example

The following creates a container with a custom tray that displays the title of the iView at the top, and then a set of links for invoking built-in tray functions. The iView's content is displayed after the links.

Syntax Syntax

  1. <lyt:containerWithTrayDesign id="column1">
        <h3><lyt:IViewTitle/></h3>
        <div class="ivuOptions">
            <lyt:IViewToggleOpen>Open</lyt:IViewToggleOpen>  
            <lyt:IViewToggleClose>Close</lyt:IViewToggleClose> |
            <lyt:IViewExpand>Open in New Window</lyt:IViewExpand> |
            <lyt:IViewRefresh>Refresh</lyt:IViewRefresh> |
            <lyt:IViewAbout>About</lyt:IViewAbout> |
            <lyt:IViewHelp>Help</lyt:IViewHelp> |
            <lyt:IViewRemove>Remove</lyt:IViewRemove> |
            <lyt:IViewPersonalize>Personalize</lyt:IViewPersonalize>
        </div>
        <div class="ivuContent">
            <lyt:IViewContent/>
        </div>
    </lyt:containerWithTrayDesign>
    
End of the code.