I'm using Stimulsoft Report.Net, version 2014.3. My project is a Website ASP.NET, .NET Framework 4.
DLL's:
- Stimulsoft.Report.dll
- Stimulsoft.Report.Web.dll
- Stimulsoft.Report.Design.dll
- Stimulsoft.Base.dll
In my file Fuels.aspx, i have a "StiWebReport" (StiWebReport_FuelVehicle) and "StiWebViewer" (StiWebReport_Fuel). On my method "CreateReport()", there are the following code:
Code: Select all
StiReport oReport = new StiReport();
StiWebReport_Fuel.ResetReport();
StiWebReport_Fuel.UseCache = false;
DataTable dt = new DataTable();
oReport = StiWebReport_FuelVehicle.GetReport();
oReport.Compile();
dt = Reports.GetFuels();
oReport.RegData("Fuels", dt);
StiWebReport_Fuel.Report = oReport;
The drill-down feature it isn't what I'm looking for, but is a possible solution. A Hyperlink is useful, but i tried on my DataBand1 > Propertie Interaction > Hyperlink and not work, why? Only work in my Texts Elements.
I saw the generated html and found the following:
- The "tr" tag, cannot be inside "a" tag, just the opposite.
- But if I put some link in my Text Element, the HTML will be (and works!):
Code: Select all
<td> <a href=""> <p>test</p> </a> </td>
I will keep the solution of Hyperlink, but is possible, in the future include some Javascript or is another product of you??
Thank you for support!