HTML Frames in a View Web Template

To display applets in a view, you can use HTML frames in view web templates and create a frame definition document. The Siebel Web Engine refreshes these frames only if one or more of the applets that the frame contains includes new data.

The following situations require HTML frames in the content area of a view web template:

  • If a tree applet occupies a frame in the first section and the corresponding list applet occupies the frame in the section in an explorer view.

  • If the user does a search. Siebel CRM requires a search frame and a results frame in the second portion of the content area.

Example Code for Using HTML Frames in a View Web Template

The following is an example of code that uses HTML frames in a view web template:

<!-- CCView_33_66_Frame start -->
<div od-type="frameset" htmlAttr="cols='33%,66%'' border='1' frameborder='Yes'">
<!-- Column 1 Applets -->
<div od-type="frame" type="Applet" htmlAttr="marginheight='0' margin width='0' scrolling='Auto'">
<div od-prefix od-id=[101:10] od-iterator="currentId">
   <div od-type="applet" od-id="od-attr-currentId" hintText="Applet" od-context="<parent>">
     <!--start applet-->
     <div od-property="FormattedHtml"/>
     <!--end applet-->
   <!--od section applet close-->
   </div>
<!--od section iterator close-->
</div>
<!--od section frame close-->
</div>
<!-- Column 2 Applets -->
<div od-type="frame" type="Applet" htmlAttr="marginheight='0' marginwidth='0' scrolling='Auto'">
<div od-prefix od-id=[201:10] od-iterator="currentId">
   <div od-type="applet" od-id="od-attr-currentId" hintText="Applet" od-context="parent">
     <!--start applet-->
     <div od-property="FormattedHtml"/>
     <!--end applet-->
   <!--od section applet close-->
   </div>
<!--od section iterator close-->
</div>
<!--od section frame close-->
</div>
<!--od section frameset close-->
</div>
<!-- CCView_33_66_Frame end --> </HTML>