I´m trying to display two components in a frame. I´ve created a new component testframeset with a reference to <start> page /webtopdev/custom/frameset/testframeset.jsp
I added the following code
<dmf:frameset cols="30%,70%" frameborder="true">
<dmf:frame name="tree" src='component/testree'/>
<dmf:frame name="list" src='component/testlist'/>
</dmf:frameset>
within the <dmf:form> tag.
Both components "testree" and "testlist" itself displays fine. However displaying the testframeset component only shows an empty browser window.
Showing the source code of the empty page results in some code with the framset tags looking as shown below.
<script language='javascript1.2'>setCookie('__dmfClientId', getBrowserId(), null, '/');</script>
<frameset cols='30%,70%' frameborder='1'>
<frame name='tree' id='Component_tree_0' src='/webtopdev/component/testree?Reload=1233137625751&__dmfFrameId=Component_tree_0' frameborder='0' scrolling='auto'/>
<frame name='list' id='Component_list_0' src='/webtopdev/component/testlist?Reload=1233137625767&__dmfFrameId=Component_list_0' frameborder='0' scrolling='auto'/>
</frameset>
It would be really nice if someone can give me a hint what maybe wrong.