Hi Everyone
ASP MVC project.
I use Q1 2015 SP1 (9.0.15.324)
I have page with Html.TelerikReporting().ReportViewer()
There are parameters which user can set. I want to crate
functionality which will send email with attached pdf report from this ReportViewer.
What the best way to implement this functionality? Could
I export Report on HTML page array bytes (PDF) in JavaScript ?
Hi,
I need some help retrieving the active set report parameters from a web report viewer.
I have a aspx page with the report viewer on it, in addition to the viewer I also have a custom email button. When the user clicks on that button I would like to sent a mail with the current report as a attachment. Problem with that is that when the user changes a few report parameters I have to apply those changes to report before I create the PDF file.
The creation of the PDF file I'm doing with the report processor:
Dim reportProcessor As New Processing.ReportProcessor()Dim deviceInfo As New Hashtable()Dim instanceReportSource = reportViewer.ReportSourceDim result As Processing.RenderingResult = reportProcessor.RenderReport("PDF", instanceReportSource, deviceInfo)Problem with the code above is that the parameters of the report viewer report source are the original parameters and not the ones who the user has changed.
Anyone suggestions how I can send the displayed report as a PDF attachment in a mail?
I am creating a Report in Hebrew, that means it is right to left.
I have now a Table that is in the following form
aa bb abc x
aa bb def x
aa bb ghi x
cc dd jkl y
cc dd mno y
and what I would like to get is:
aa bb abc x
def
ghi
cc dd jkl y
mno
or at least:
aa bb abc x
aa bb def
aa bb ghi
cc dd jkl y
cc dd mno
Is it possible with the standalone Report Designer to achieve something like that, and if yes how? Is there a way to change the groups from being added to the left side of the table, to be added to the right side?
step 2:
Error Message:"
System.Web.Razor.Parser.TokenizerBackedParser~3[TTokenizer,TSymbol,TSymbolType]"上的GenericArgumnets[0]"
System.Web.Razor.Tokenzier.CSharpTokenizer“违反了类型”
TTokenizer“的约束。
Have you an Idea to solve this ? Thank you.
Here is my scenario:
I have a report with multiple parameters, 2 of which are not working properly. One of these parameters is called 'ParentOrg' and will return a list of all organizations. The other is called 'Org' which takes the parameter value from 'ParentOrg' and makes sure that the same value is not included in the drop down list.
ParentOrg = (1,2,3,4,5,6) and Org = (1,2,3,4,5,6)
But, when the report renders and I have chosen ParentOrg = 3, the Org drop down should only show/allow Org = (1,2,4,5,6).
The report will render with default values, but when I try to change the ParentOrg, the report crashes.
Can someone point me in the right direction?
Thanks,
Phillip
Hi Team,
We have two applications one is asp.net mvc web application which will make call to asp.net web api to get telerik report data as rest api call, till now we are using asp.net in memory cache, now i am trying to store the cache in a shared path, below is the line of code that i updated after adding this all my api POST calls to ReportViewer controller are failing, I see there are two calls being made one is options call the other one is post call, options call is getting 200 as reponse but post is failing with status code 400, I can see some files getting created in shared path "C:\\TempReportCache", please see the attched screenshot "ApiCalls Status code to ReportViewer Api controller.jpg" which controls call trace and their response.
please let me know what is the issue and do i need to update anything else in order to store cache in a shared path?
protected override ICache CreateCache()
{
return Telerik.Reporting.Services.Engine.CacheFactory.CreateFileCache("C:\\TempReportCache");
}
}