Hi Experts,
I've got a problem using ActionService.execute function in Java.
So I've got one JSP class and it will call this:
<dmf:link onclick="onClickHere" label="Request">
<dmf:argument name="objectId" datafield="r_object_id" /></dmf:link>
One function in its java class:
public void onClickHere(Control c, ArgumentList args)
{ ActionService.execute("request_mf", args, getContext(), this, null);}
And one action xml:
<action id="request_mf"> <desc>Request MF</desc> <params> <param name="objectId" required="true /> </params> <execution class="com.documentum.web.formext.action.LaunchComponent"> <component>request_mf_component</component> <container>cust_container</container> <navigation>return</navigation> </execution> <invocation> <modalpopup> <windowsize>large</windowsize> <refreshparentwindow>onConfirm</refreshparentwindow> </modalpopup> </invocation></action>
Well when we click on the link, it works, but it does fullscreen instead of poping up.
What do I need to make it pop up instead of full screen? I've put invocation in the action xml but it seems to be ignored.
Please advice what to do.
Thanks!
Regards,
Felik