StiWebViewerFx is not working with UpdatePanel

Stimulsoft Reports.WEB discussion
Post Reply
kulwinder
Posts: 8
Joined: Mon May 31, 2010 6:24 am
Location: India

StiWebViewerFx is not working with UpdatePanel

Post by kulwinder »

Why StiWebViewerFx is not working with UpdatePanel. Code is working if remove UpdatePanel. I don't have any other code on this page. I am using Stimulsoft Reports Designer.Web 2010.1 Trial version

ASPX Code:












Code Behind:

public partial class TestReport2 : System.Web.UI.Page {
protected void Page_Load(object sender, EventArgs e) {

}

protected void btnSummaryReport_Click(object sender, EventArgs e) {
DataSet ds= new DataSet("DataSet1");
ds.ReadXmlSchema(Server.MapPath("data.xsd"));
ds.ReadXml(Server.MapPath("data.xml"));


Reports.SampleListReport rep = new Reports.SampleListReport();
rep.RegData(ds);
StiWebViewerFx1.Report = rep;
}
}


Thanks
Kulwinder
Vladimir
Posts: 1462
Joined: Fri Apr 13, 2007 4:05 am
Location: Earth

StiWebViewerFx is not working with UpdatePanel

Post by Vladimir »

Hello,

Unfortunately, at this moment WebViewerFx not compatible with UpdatePanel.

Thank you.
Igor Gusak
Posts: 7
Joined: Wed Jun 02, 2010 8:31 am
Location: CzechRepublic

StiWebViewerFx is not working with UpdatePanel

Post by Igor Gusak »

Hello,
Can I show web designer inside master page, not in separate window?
Vladimir
Posts: 1462
Joined: Fri Apr 13, 2007 4:05 am
Location: Earth

StiWebViewerFx is not working with UpdatePanel

Post by Vladimir »

Hello, Igor

Yes. To place report designer not on the full screen, you can use iframe.

Thank you.
Attachments
439.SampleProject.zip
(7.76 KiB) Downloaded 264 times
Post Reply