Displaying the report filter on a report
Displaying the report filter on a report
Hi all, I was wondering whether it's possible to display the report filter on a report? More often than not, the end user of the report has nothing to do with running the reports and it would be helpful to them to know how the report was filtered.
Thanks!
Thanks!
Displaying the report filter on a report
Hello,
Unfortunately this option is not available now in our report engine. But we plan release this functionality in few next official releases.
Thank you.
Unfortunately this option is not available now in our report engine. But we plan release this functionality in few next official releases.
Thank you.
Re: Displaying the report filter on a report
Dear Jan,
Is this option [Filter on report viewer] is available to 2012 release ?
i'm looking forward for your reply
prasanna
Is this option [Filter on report viewer] is available to 2012 release ?
i'm looking forward for your reply
prasanna
Re: Displaying the report filter on a report
Hello.
Could you specify what do you want to see in the report?
Do you want to see a filter condition as a string?
Thank you.
Could you specify what do you want to see in the report?
Do you want to see a filter condition as a string?
Thank you.
Re: Displaying the report filter on a report
Iam trying to achieve functionality like this in your demo site http://web.stimulsoft.com/?reportname=P ... ingCountry
I created a variable and filter condition in report.filter option works in design window,But not in view window.
it through's error 'Object reference not set to an instance of an object.'
Stack Trace:
What could be the problem,please find the mrt file attached.
Thanks
I created a variable and filter condition in report.filter option works in design window,But not in view window.
it through's error 'Object reference not set to an instance of an object.'
Stack Trace:
C# Code [Viewer page]:[NullReferenceException: Object reference not set to an instance of an object.]
Stimulsoft.Report.Web.StiRequestFromUserPanel.CreateTextBoxTo(StiVariable variable, Int32 width) +1199
Stimulsoft.Report.Web.StiRequestFromUserPanel.CreateControlsVariables() +1492
Stimulsoft.Report.Web.StiRequestFromUserPanel.UpdateControls() +174
Stimulsoft.Report.Web.StiRequestFromUserPanel..ctor(StiWebViewer viewer, ArrayList reportVariables, StiReport report) +425
Stimulsoft.Report.Web.StiWebViewer.CreateChildControls() +1980
System.Web.UI.Control.EnsureChildControls() +102
Stimulsoft.Report.Web.StiWebViewer.OnLoad(EventArgs e) +137
System.Web.UI.Control.LoadRecursive() +74
System.Web.UI.Control.LoadRecursive() +146
System.Web.UI.Control.LoadRecursive() +146
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +2207
Code: Select all
try
{
string applicationDirectory = HttpContext.Current.Server.MapPath(string.Empty);
string reportPath = System.IO.Path.Combine(applicationDirectory, "Reports", User.Identity.Name, Request.QueryString[0].ToString() + ".mrt");
if (System.IO.File.Exists(reportPath))
{
Stimulsoft.Report.StiReport report = new Stimulsoft.Report.StiReport();
report.Load(reportPath);
StiWebViewer1.Report = report;
}
else
{
Response.Write("Report Not Found :(");
}
}
catch (Exception ex)
{
Response.Write(ex.ToString());
}
Thanks
- Attachments
-
- Report4.mrt
- (25.82 KiB) Downloaded 305 times
Re: Displaying the report filter on a report
Hello,
Please check the last prerelease build.
Thank you.
Please check the last prerelease build.
Thank you.