Hi,
We are trying to upgrade a webtop 5.3 project to webtop 6.7 but we are facing a major issue.
In Webtop 5.3 we were using tabbar component instead of a container. In my new upgraded project I created a custom main component which includes a custom mainex.jsp.
My mainex.jsp is as follows:
page contentType="text/html; charset=UTF-8" %>
page errorPage="/wdk/errorhandler.jsp" %>
taglib uri="/WEB-INF/tlds/dmform_1_0.tld" prefix="dmf" %>
taglib uri="/WEB-INF/tlds/dmformext_1_0.tld" prefix="dmfx" %>
page import="com.documentum.web.form.Form" %>
<dmf:html>
<dmf:head>
<dmf:webform/>
<dmf:title>
<dmf:label nlsid="MSG_TITLE"/>
</dmf:title>
<script type='text/javascript' src='<%=Form.makeUrl(request, "/webtop/main/main.js")%>'></script>
<script type='text/javascript' src='<%=Form.makeUrl(request, "/wdk/include/timeoutControl.js")%>'></script>
<script type='text/javascript' src='<%=Form.makeUrl(request, "/wdk/include/unsavedChanges.js")%>'></script>
<script type='text/javascript'>onSetView("classic");</script>
<script type='text/javascript'>
function onUnload() {
promptIfUnsavedChangesExist();
manageTimeout(frames["timeoutcontrol"]);
}
</script>
</dmf:head>
<dmf:frameset rows='0,0,28,*,21' border='0' framespacing='0' frameborder='false' onunload='onUnload()'>
<dmf:frame name="timeoutcontrol" src="/wdk/timeoutcontrol.jsp" marginwidth="0" marginheight="0" scrolling="no" noresize="true"/>
<dmf:frame name="residentucfinvoker" src="/component/residentucfinvoker" marginwidth="0" marginheight="0" scrolling="no" noresize="true"/>
<dmf:frame nlsid="MSG_TITLEBAR" name='titlebar' src="/component/titlebar" scrolling="no" noresize="true"/>
<dmf:frame nlsid="MSG_TABBAR" name='maincontainer' src='/component/tabbar'
marginwidth="0" marginheight="0" scrolling="no" noresize="true" cssclass="tabbarBackground"/>
<dmf:frame nlsid="MSG_MESSAGEBAR" frameborder='false' name='messagebar' src='/component/messagebar' scrolling='no' noresize="true"/>
</dmf:frameset>
</dmf:html>
Since there is no use of the tabbar component in Webtop 6.7 (streamline view is obsolete), the tabs don’t seem to work even thought I can see the titles of the tabs. Is there a chance to use my custom tabbar component in webtop 6.7 and call this straight from mainex.jsp or do I have to transform the tabbar to a container (which requires a lot of work!)?