Sybase Enterprise Portal issue

With applications deployed with Appeon Xcelerator, when you try to maximize or minimize an application loaded in Enterprise Portal (EP) 6.1 or Unwired Accelerator (UA) 6.5, or click the portlet title, EP or UA attempts to reload the application but fails. This issue is currently being researched by Sybase.

Workaround #1: When the portlet turns blank after clicking the Maximize or Minimize button or the portlet title, click the Internet Explorer Refresh button to rerun the application.

Workaround #2: Modify the EP pageserver_body_ie_mixed_divIFrame.jsp file before running Appeon applications in EP.

Original:

portletBars.append("\n\t\t\t document.write(\"<td nowrap width=17 valign=bottom align=right height=11><a href=\\\"javascript:resizeTileWindow('"+theId+"', '"+height+"', '"+tileid+"', "+security+", '"+theIframe+"')\\\"><img name='minimize"+theId+"' id='minimize"+theId+"' src='\"+minimizeIcon_img+\"'  width='12' height='12' border='0' ALT='"+(String)messages.get("ALT_MIN_WIN")+"'></a><span class='nbsp'>&nbsp;</span></td>\"); \n");
portletBars.append("\n\t\t\t document.write(\"<td nowrap width=17 valign=bottom align=right height=11><a href=\\\"javascript:maximizeTileWindow('"+theId+"')\\\"><img name='expandIcon"+theId+"' id='expandIcon<"+theId+">' src='\"+expandIcon_img+\"'  border='0' ALT='"+(String)messages.get("ALT_MAX_WIN")+"'></a><span class='nbsp'>&nbsp;</span></td>\"); \n");

Modified:

portletBars.append("\n\t\t\t document.write(\"<td nowrap width=17 valign=bottom align=right height=11 onclick=\\\"javascript:resizeTileWindow('"+theId+"', '"+height+"', '"+tileid+"', "+security+", '"+theIframe+"')\\\"> <img name='minimize"+theId+"' id='minimize"+theId+"' src='\"+minimizeIcon_img+\"'  width='12' height='12' border='0' ALT='"+(String)messages.get("ALT_MIN_WIN")+"'></a><span class='nbsp'>&nbsp;</span></td>\"); \n");
portletBars.append("\n\t\t\t document.write(\"<td nowrap width=17 valign=bottom align=right height=11 onclick=\\\"maximizeTileWindow('"+theId+"');\\\" ><img name='expandIcon"+theId+"' id='expandIcon<"+theId+">' src='\"+expandIcon_img+\"'  border='0' ALT='"+(String)messages.get("ALT_MAX_WIN")+"'></a><span class='nbsp'>&nbsp;</span></td>\"); \n");