Hi,
I am trying to use the WebDataMenu (11.1, i have also intalled the service release to see if this fixes the problem 11.1.20111.2064) with the crystalreportsviewer 13.0.2000 with not much success (VS.NET2010/VB).
basically if i have the webdatamenu after the crystalreportsviewer section both display correctly, but having the menu above the crystalreportsviewer (where i actually want it) causes the crystalreportsviewer to not display anything.
I have tested this on IE8,IE9,Firefox 7, this problem also applies to other infragistics controols such as webexplorerbar, webdatatree.
I can recreate this issue in a sample project as follows, this causes the report to not show, but moving the code for the datamenu after the reportviewer is ok.
<%@ Page Title="" Language="vb" AutoEventWireup="false" MasterPageFile="~/Site.Master" CodeBehind="WebForm1.aspx.vb" Inherits="WebApplication1.WebForm1" %><%@ Register assembly="Infragistics4.Web.v11.1, Version=11.1.20111.2064, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" namespace="Infragistics.Web.UI.NavigationControls" tagprefix="ig" %><%@ Register assembly="CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" namespace="CrystalDecisions.Web" tagprefix="CR" %><%@ Register assembly="Infragistics4.Web.v11.1, Version=11.1.20111.2064, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" namespace="Infragistics.Web.UI" tagprefix="ig" %><asp:Content ID="Content1" ContentPlaceHolderID="HeadContent" runat="server"></asp:Content><asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server"> <ig:WebDataMenu ID="WebDataMenu1" runat="server"> <Items> <ig:DataMenuItem Text="Root Item"> </ig:DataMenuItem> </Items> </ig:WebDataMenu> <ig:WebScriptManager ID="WebScriptManager1" runat="server"> </ig:WebScriptManager> <CR:CrystalReportViewer ID="CrystalReportViewer1" runat="server" AutoDataBind="true" ReportSourceID="CrystalReportSource1" /> <CR:CrystalReportSource ID="CrystalReportSource1" runat="server"> <Report FileName="CrystalReport1.rpt"> </Report> </CR:CrystalReportSource></asp:Content>
site.master is just the default created and the report is just a blank one for testing purposes.
Any help would be appreciated.
Thanks,
Bob
Hello flogan,
This is just a follow up on the thread if you have any questions in regards to the provided sample attachment. You can add an iframe that will allow the WebDataMenu control to run on this specific setup of the web page.
Let me know if you have any questions with this matter. Thank you.
Can you help anymore with the response please?
Thanks
Sorry for the delay in replying, I have only just got back on this project. Using this trick does work, but it seems quite messy. I have got around the problem of the links opening within the iframe by using the base target, however the issue now is that the datamenu is restricted to the iframe size which is not good - the menu is un-usable as it will have various dropdowns, is it possible to allow the menu to be drawn outside of the iframe?