2014-01-15 83 views

回答

2

的解決方案,通過此post1post2作爲發起是編輯「C:\ Program Files文件\ Microsoft SQL Server的\ MSRS11_00。 MSSQLSERVER \ Reporting Services \ ReportManager \ js \ ReportingServices.js「 加入以下內容:

function pageLoad() {  
    var element = document.getElementById("ctl32_ctl09"); 
    if (element) { 
     element.style.overflow = "visible"; 
    } 

    fixMenu(); 
} 

function fixMenu() { 
    var tables = document.getElementsByTagName("TABLE"); 
    var j = 0; 
    for(var i = 0; i < tables.length; i++) { 
     var c = tables[i].attributes["class"]; 
     if (typeof(c) != 'unefined' && c != null) { 
      if (c.nodeValue.indexOf("WidgetSetSpacer") != -1 || c.nodeValue.indexOf("WidgetShortSpacer") != -1) { 
       tables[i].style.display = ""; 
       j++; 
      } 
     } 
    } 
}