Displaying More Views in the Content Area
To display more views in the content area, you can configure Siebel CRM to load a different content container page in the content frame. To do this, you can configure SWE to call the LoadContentContainer method from a control or page item. The User Property Container sends this content container.You set this to the Web Template Name of the content container page.
For example, to display the search view with the main view, you can configure SWE to create a content container page, such as CCSMainAndSearchView, and then use the LoadContentContainer method to load it. The following code from the CCSMainAndSearchView web template contains the tags that load the main view and search view into two frames:
<div od-type=frameset htmlAttr="cols='100%' border='0' frameborder='No'">
<div od-type=frame: type="View" htmlAttr="noresize scrolling='Yes'">
<div od-type=current-view/>
<!--od section frame close–>
<div od-type=frame type="AltView" name="Search" htmlAttr="noresize scrolling='Yes'">
<div od-type=view name="Search View" id="Search" />
<!--od section frame close–>
<!--od section frameset close–>
The current-view tag references the main view. The view tag references alternate views.