Hi all!
A simple question:
im using modul popup windows. I don't have problems, but i can't see the right title of the window before the string "-- Webpage Dialog".
So i see ": -- Webpage Dialog"
This is the component
<?xml version="1.0" encoding="ISO-8859-1" standalone="no"?>
<config version="1.0">
<scope>
<component id="accettazione_pratiche_component" >
<pages>
<start>/custom/accettazione_pratiche/cerca_pratiche.jsp</start>
</pages>
<class>com.suap.accettazionepratiche.CercaPratiche</class>
</component>
</scope>
</config>
This is the action
<config version="1.0">
<scope>
<action id="accettazione_pratiche_action">
<invocation>
<modalpopup>
<windowsize>large</windowsize>
<refreshparentwindow>onok</refreshparentwindow>
</modalpopup>
</invocation>
<execution class="com.documentum.web.formext.action.LaunchComponent">
<component>accettazione_pratiche_component</component>
<container>dialogcontainer</container>
</execution>
</action>
</scope>
</config>
I have modified the title tag in the head of the page
<dmf:html>
<head>
<dmf:title> example </dmf:title>
</head>
I should see "example -- Webpage Dialog" instead of ": -- Webpage Dialog"
What is missing?