【问题标题】:RDLC 'export' option showing up behind the dataRDLC“导出”选项显示在数据后面
【发布时间】:2012-05-24 17:43:25
【问题描述】:

我开发了一些我在我的 asp.net/vb.net 项目中使用的 rdlc 文件。报告加载得很好,但是当我点击工具栏中的“导出”时,它会显示在数据后面

我想我可以使用Z indexes,但没有看到任何明确的工具栏方法。关于如何解决的任何想法?以下是我在aspx页面中的代码

<asp:ReportViewer ID="ReportViewer1" runat="server" Font-Names="Verdana" 
    Font-Size="8pt" InteractiveDeviceInfos="(Collection)" 
    WaitMessageFont-Names="Verdana" WaitMessageFont-Size="14pt" Width="100%" AsyncRendering="true" SizeToReportContent="true">                                                                                                                                             
    <LocalReport ReportPath="Report\myReport.rdlc" EnableHyperlinks="true">                                           
        <DataSources>                                
            <asp:ReportDataSource DataSourceId="SqlDataSource1" Name="DataSet1"/>                                                                  
        </DataSources>                
    </LocalReport>                          
</asp:ReportViewer>

【问题讨论】:

    标签: asp.net vb.net reporting-services rdlc rdl


    【解决方案1】:

    如果以后有人遇到这种情况,我将以下 jquery 添加到我的 .aspx 文件中,它可以工作。

    <script type="text/javascript">
        $(document).ready(function () {
            $('#ctl00_appPages_ReportViewer1_ctl06_ctl04_ctl00_Menu').css('z-index', 99);
        });        
    </script>
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2013-08-18
      • 2012-12-22
      • 1970-01-01
      • 2021-02-17
      • 1970-01-01
      • 2021-07-26
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多