Show TOC

IViewTitleLocate this document in the navigation structure

Use

Displays the value of the com.sap.portal.pcm.Title property of the iView.

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.

            <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>