I have a report, straight table with 15 columns and 7000 rows. Running in an MVC application.
Report is slow to load and renders the browser useless after it does render.
I am looking to have a discussion on things that can be done to reduce this perfomance bottleneck.
All suggestions welcome,
Kurt
Hi guys,
I want to hide some line portions in a telerik chart, I don't know how to explain it, so I've created an example image to show you my idea
How you can see in this case I assumed that in March there isn't any data, so the line must by invisible in that month
I am running SQL 2008 R2 on Windows 7.
Telerik Report Designer, Q3 2015.
I can't seem to get a connection string to connect to my database.
Any thoughts on what I should select to connect?
Thanks
Kurt
I am new at this, created a simple graph report and it displays just fine. I have a table report (7000 rows, 15 columns) that works fine in visual studio. When I try to view the report in the application this is that I see.
Done. Total 1 pages loaded.
But I never see the report paint on the screen. Thoughts? See attachment.
Kurt
Hello guys, I'm new using Telerik Report. I'm using telerik report in windows forms application with visual basic in visual studio 2015. I've followed the "Best Practices" and created a class library I've referenced this class in my application, but I can't view my reports I got the error "The source of the report definition has not been specified", I've already tryed "Instance report source" and "Type report source"
Dim instanceReportSource As New Telerik.Reporting.InstanceReportSource()
' Assigning the Report object to the InstanceReportSource
instanceReportSource.ReportDocument = New myLibrary.myReport
' Adding the initial parameter values
instanceReportSource.Parameters.Add(New Telerik.Reporting.Parameter("OrderNumber", "SO43659"))
and with Type report source I don't know how to do
typeReportSource.TypeName = GetType(myLibraryObject?).AssemblyQualifiedName
typeReportSource.Parameters.Add(New Telerik.Reporting.Parameter("OrderNumber", "SO43659"))
what should I do?
thanks in advance
I have gotten the ASP.NET MVC Report Viewer working in my MVC application using the sample code provided on the website. I am viewing the sample report called SampleReport.trdx.
I have created a test report using the Visual Studio Designer and of course it is of .cs extension. ActiveUsers.cs.
In the ReportViewerView.cshtml the report source is set like so: .ReportSource(new UriReportSource() { Uri = "SampleReport.trdx" })
How to I change the reportsource to use the activeusers.cs; I have tried .ReportSource(new UriReportSource() { Uri = "ActiveUsers.cs" }) and it says the name cannot be resolved.
Regards,
Kurt
I have an ASP.NET MVC application. I have the telerik reporting MVC report viewer installed. I have the sample report displaying using the report viewer view that is packaged in the installer.
I created a separate class library to hold my reports, it is called MyClass.client.reports. In is there is a reports folder and a report I created using the Visual Studio Designer. It uses a SQL query, and the DataContext from my solution which it recognized when I created the report.
When I preview the report in Visual Studio it previews fine. When I try to access the report at runtime I get the following error in the report viewer. The connection string is in the AppConfig of another project which my report project references. So my reports are in one project. Controllers & views in a second project. The data connection string is in the appconfig of the third project. I don't understand why the report cannot resolve the data connection.
An error has occurred while processing Table 'table1': Unable to establish a connection to the database. Please, verify that your connection string is valid. In case you use a named connection string from the application configuration file, make sure the name is correct and the connection string settings are present in the configuration file of your application. ------------- InnerException ------------- Format of the initialization string does not conform to specification starting at index 0.
I have a Kendo UI grid with filters. I want to take those filters and apply them to a Reporting Services report. How do I pass the filters from the UI Grid to the reports end point?
I've seen plenty examples of how to do this with the RadGrid, but not with the UI JS grid.
Note, I'm using the DataSourceRequest helpers to construct linq queries. I'd prefer to keep this using these helpers.
thanks