English 中文(简体)
RDLC 导出选项显示在数据后面
原标题:RDLC export option showing up behind the data

我开发了一些 Rdlc 文件, 我在我的 asp. net/ vb. net 工程中正在使用。 报告负荷很大, 但是当我点击工具栏导出时, 它显示在数据后面

我想象我可以玩游戏 索引 , 但看不到任何工具栏明确使用的方法 。 对于如何修补, 是否有想法? 下面是我在 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="ReportmyReport.rdlc" EnableHyperlinks="true">                                           
        <DataSources>                                
            <asp:ReportDataSource DataSourceId="SqlDataSource1" Name="DataSet1"/>                                                                  
        </DataSources>                
    </LocalReport>                          
</asp:ReportViewer>
最佳回答

万一有人在稍后的某个日期遇到这种情况, 我在我的. aspx 文件中添加了以下的jquery, 并且它起作用了。

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

暂无回答




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Transaction handling with TransactionScope

I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx I just want to confirm that is ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

Microsoft.Contracts namespace

For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签