Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Archived » BIRT » Interfacing BIRT Report Viewer with ASP.NET(How to get the BIRT Report Viewer open in a button Click of a webpage.)
Interfacing BIRT Report Viewer with ASP.NET [message #1706088] Sat, 22 August 2015 04:42 Go to next message
Suvarnni M V is currently offline Suvarnni M VFriend
Messages: 12
Registered: July 2015
Junior Member
Dear All,

I'm new to BIRT Reporting Tool. Actually, I'm able to do reports in BIRT in Eclipse BIRT 4.5.0 Version but I don't know how to interface that with my Project. I have searched in all forums but I didn't got any correct procedure or solution.

I want to open the BIRT Viewer in ASP.NET Webpage.

I want to release my project as soon as possible.

Can anyone help me to solve this issue. Please....

Awaiting for the Positive Reply..

Thanks & Regards
Suvarnni
Re: Interfacing BIRT Report Viewer with ASP.NET [message #1706090 is a reply to message #1706088] Sat, 22 August 2015 05:50 Go to previous messageGo to next message
Suvarnni M V is currently offline Suvarnni M VFriend
Messages: 12
Registered: July 2015
Junior Member
Can Anyone help me out to solve this ??
Re: Interfacing BIRT Report Viewer with ASP.NET [message #1706093 is a reply to message #1706090] Sat, 22 August 2015 09:32 Go to previous messageGo to next message
Suvarnni M V is currently offline Suvarnni M VFriend
Messages: 12
Registered: July 2015
Junior Member
I created a HTML page with the following code in Visual Studio 2013 version

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>JSAPI Template</title>

</head>
<body onload="init()">
<input type="button" id="runviewer" value="Run BIRT Viewer" onclick="runViewer( )">
<input type="button" id="runinteractive" value="Run Interactive Viewer" onclick="runInteractive( )">
<div id="sample">
<script type="text/javascript" language="JavaScript">
var myviewer;
function init()
{
actuate.load("viewer");
actuate.initialize( "http://127.0.0.1:8700/iportal", null,
"administrator", "", initViewer);
}
function initViewer(){
myviewer = new actuate.Viewer("contentpane");
}
function runViewer(){
myviewer.setReportName("/Applications/Patient Reports/Patient Copay Report.rptdesign");
myviewer.submit(function() {myviewer.disableIV();});
}
function runInteractive(){
myviewer.setReportName("/Applications/Patient Reports/Patient Count Report.rptdesign");
myviewer.submit(function() {myviewer.enableIV();});
}
</script>
</div>
</body>
</html>



But when I'm running this code its showing an error like
"Uncaught ReferenceError: actuate is not defined"

Where I'm missing that code? Is there is any reference needed for this?

Help me to solve this...
Re: Interfacing BIRT Report Viewer with ASP.NET [message #1706128 is a reply to message #1706093] Mon, 24 August 2015 03:21 Go to previous message
Suvarnni M V is currently offline Suvarnni M VFriend
Messages: 12
Registered: July 2015
Junior Member
At least tell me Is calling of BIRT Viewer from webform is possible or not.?

in other reporting forums i used to get response soon.
But in case of BIRT i posted this before three days but till now no reply........
Previous Topic:Set colors for barchart globally
Next Topic:Stepwise graph - same x-axis values with different y-axis values
Goto Forum:
  


Current Time: Fri Apr 19 21:55:00 GMT 2024

Powered by FUDForum. Page generated in 0.03322 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top