Hi,
I use trdx files for my reports and switch the database connection at runtime using the connection string manager code here, that code is used in a custom resolver.
Everything works fine but I have now added a parameter to my report that I would like to set the value of in c# at rutime. Looking through the connection manager code listed above I find that 'originalReportSource.Parameters' as below is empty - surely this should contain the parameter that is defined in my report or am I missing something?
ReportSource CreateInstanceReportSource(IReportDocument report, ReportSource originalReportSource)
{
var instanceReportSource =
new
InstanceReportSource { ReportDocument = report };
instanceReportSource.Parameters.AddRange(originalReportSource.Parameters);
return
instanceReportSource;
}
I am using Telerik.Reporting in an ASP.NET MVC5 app. We have recently upgraded to version 10.1.16.615. When we deployed to QA, all reports fail with this message:
Error registering the viewer with the service.
An error has occurred.
Access to the path 'C:\Windows\TEMP\MvcApp\10.1.16.615\Cs\A\value.dat' is denied.
I have read several threads on this message, and tried deleting the file and then revising web.config
1. Deleting the file - no joy, next report run creates the file and throws same error. I ma the only user on the system at this time.
2. Specifying a cache provider. web.config contains:
under <configuration><configSections>
<
section
name
=
"Telerik.Reporting"
type
=
"Telerik.Reporting.Configuration.ReportingConfigurationSection, Telerik.Reporting, Version=10.1.16.615, Culture=neutral, PublicKeyToken=a9d7983dfcc261be"
allowLocation
=
"true"
allowDefinition
=
"Everywhere"
/>
under <configuration>
<
Telerik.Reporting
>
<
Cache
provider
=
"Memory"
/>
<
Extensions
>
<
Render
>
<
Extension
name
=
"IMAGE"
visible
=
"false"
/>
<
Extension
name
=
"MHTML"
visible
=
"false"
/>
<
Extension
name
=
"RTF"
visible
=
"false"
/>
<
Extension
name
=
"XPS"
visible
=
"false"
/>
</
Render
>
</
Extensions
>
</
Telerik.Reporting
>
The Extension element already existed - just showing the complete set.
Same error, not only restarted site but rebooted machine.
Ideas?
Hi
I just installed the latest R2 reporting verson and set up an empty ASP.NET app with the standard report controller, and one simple report that I created in the Stand Alone designer (trdp).
I am calling the REST API using PostMan.
The call to formats works, as does clients, and I get a clientId
However, the call to /parameters or /instances hangs... it doesnt even show up in fiddler (whereas the other calls do).
What could be wrong?
POST http://localhost/ProjectCentral.Reporting/api/reports/clients
returns
{
"clientId": "175035-70fc"
}
and
POST http://localhost:ProjectCentral.Reporting/api/reports/clients/173346-5ee7/parameters
{
"report": "RDCertificate.trdp",
"parameterValues": {
"ProjectNumber": 2050122
}
}
Hangs.
I am deploying to my local IIS Server on Windows 10 Anniversary Edition, 64 bit. Integrated App Pool running as Network Service, with access to the cache and reports folder (I see the cache files being written).
In our testing of the report viewer, was found that it will not load properly in Microsoft Edge. It fails with the error message "This page is having a problem loading". Looking at the Report Viewer Browser support page it appears that Edge is not currently supported. Is there an ETA on when this will be a supported browser? We likely will need Edge working before we can fully consider this product.
Hi
I am using reporting v.7.1.13.612
I have a graph with one line series, the Y axis is Numeric and the X axis is Category(numbers also).
When I have a lot of records I want to hide some of the category labels since it looks bad.
I found only a way to do that with Chart class but not with Graph class.
Thanks
Ron
Hi Team,
I have used a excel to bind to my script and have done two iterations.
After the script is done when i am exporting my report, i want to see the data passed for the step in the report .But for each iteration it shows the same data whereas it runs for all sets of data in the excel :
"Enter text '/demo' in 'HdfsUrlText' - DataDriven: [$(path)]"
I want something of the following type i.e different data passed should be visible in the result so that we can know the difference of the result:
#Iteration1
"Enter text '/demo' in 'HdfsUrlText' - DataDriven: [$(path)]"
#Iteration2
"Enter text '/demo1' in 'HdfsUrlText' - DataDriven: [$(path)]"
Please let me know how to set the value in the text field and make it data driven.
DataSourceSelectArguments args = new DataSourceSelectArguments();
DataView view = (DataView)sqlDataSource1.Select(args);
DataTable table = view.ToTable();
Hello,
I was wondering how I access the SelectedDocumentMapNode and DocumentMapNodes properties in WPF?
The goal is to display my own document map with checkboxes next to each item so I can provide the user with a simple way to remove reports. Seems redundant to display a list of sections to include along with displaying the built-in Document Map.
Thanks,
Amy