[gatein-commits] gatein SVN: r8744 - epp/portal/branches/EPP_5_2_Branch/web/portal/src/main/webapp/groovy/webui/core.

do-not-reply at jboss.org do-not-reply at jboss.org
Mon Jun 25 05:06:27 EDT 2012


Author: ppalaga
Date: 2012-06-25 05:06:26 -0400 (Mon, 25 Jun 2012)
New Revision: 8744

Modified:
   epp/portal/branches/EPP_5_2_Branch/web/portal/src/main/webapp/groovy/webui/core/UIVirtualList.gtmpl
Log:
Bug 794025 - (JBEPP-1094) in IE7 page administration table is not rendered correctly

Modified: epp/portal/branches/EPP_5_2_Branch/web/portal/src/main/webapp/groovy/webui/core/UIVirtualList.gtmpl
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/web/portal/src/main/webapp/groovy/webui/core/UIVirtualList.gtmpl	2012-06-24 10:07:10 UTC (rev 8743)
+++ epp/portal/branches/EPP_5_2_Branch/web/portal/src/main/webapp/groovy/webui/core/UIVirtualList.gtmpl	2012-06-25 09:06:26 UTC (rev 8744)
@@ -9,9 +9,11 @@
     rcontext.getJavascriptManager().importJavascript('eXo.core.Browser');
     rcontext.getJavascriptManager().importJavascript('eXo.webui.UIVirtualList');
     
-    String url = uicomponent.url("LoadNext") + "&ajaxRequest=true"; 
+    String url = uicomponent.url("LoadNext") + "&ajaxRequest=true";
+    
+    /* overflow-x:hidden is a fix for https://bugzilla.redhat.com/show_bug.cgi?id=794025 */ 
 %>
-<div id="$uicomponent.id" style="overflow:auto;" 
+<div id="$uicomponent.id" style="overflow:auto; overflow-x:hidden; " 
   onscroll="eXo.webui.UIVirtualList.scrollMove(this,'$url');">    
   <div style="width: 99%;" >
   	<% uicomponent.renderChildren();%>



More information about the gatein-commits mailing list