1

我开发了一些我在我的 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>
4

1 回答 1

0

万一有人在以后遇到这个问题,我将以下 jquery 添加到我的 .aspx 文件中并且它起作用了。

<script type="text/javascript">
    $(document).ready(function () {
        $('#ctl00_appPages_ReportViewer1_ctl06_ctl04_ctl00_Menu').css('z-index', 99);
    });        
</script>
于 2012-06-19T20:11:30.813 回答