I have been trying to get a custom component with frames to be launched as a modalpopup. I have the component working (for the most part) but I cannot get it to launch as a new model window. It appears in the content frame. Here is the basic config.
Action:
<action id="my_action">
<execution class="com.documentum.web.formext.action.LaunchComponent">
<component>my_component</component>
<navigation>nest</navigation>
</execution>
<invocation>
<modalpopup>
<windowsize>medium</windowsize>
<refreshparentwindow>never</refreshparentwindow>
</modalpopup>
</invocation>
</action>
Component:
<component id="my_componentkal_ap_inv_corr">
<pages>
<start>/custom/my_main.jsp</start>
</pages>
<class>com.mycompant.myclass</class>
</component>
JSP:
<frameset cols='25%,75%' border='0' framespacing='0' frameborder='false'>
<frame name='myframe1' src='http://localhost:8080/webtop/component/component1'/>
<frame name='myframe2' src='http://localhost:8080/webtop/component/component2'/>
</frameset>
I have tried several different configurations to no avail. Can anyone please help?
Modalpopup is enabled at the custom level.