Hello everyone.
We have a web application application running Telerik Reporting. Our session timeout is set to 20 minutes in the web.config file. However, if the user does not interact with the page (i.e. they are reading the report) and then attempt to scroll down after about 60 seconds, they get: "Session has expired. Please, refresh the page." in the report window. This is a consistent problem and adjusting the session timeout in the web.config does not appear to have any effect.
Can someone point me in the right direction?
I appreciate your time in advance!
Chris
I have a standard winforms app displaying numerous Telerik reports in a winforms ReportViewer, using Reporting Q3 2015.
My users would like a couple features implemented:
1. Ability to select/copy/paste report content from a report to some other app.
When the report is instantiated in the report viewer and mouse is over it, a hand cursor appears, enabling scrolling of the report, but no other functionality.
Is there a way to alter that behavior to allow a user to select some content in the report, then CTRL-C it, similar to what can be done in reports in the Telerik web report viewer?
I don't need to allow editing of the report at runtime, just "mousedown -> drag to select -> ctrl-c".
2. Ability to export reports to PDF or Excel without having to save first.
I found this article: http://www.telerik.com/help/reporting/faq-display-pdf-browser.html
Obviously the winforms report viewer already has export to PDF/Excel functionality in the report toolbar... Is there a way to override that click event?
Of course I could simply put a new button on the form, enabling that export without saving first functionality... but having 2 export buttons certainly isn't efficient.
If it makes any difference, in my app I have some reports implemented as classes from a library, and others as trdx files. So can go either way if it makes things easier.
Thanks much for assistance with these issues.
Hi,
I am trying to create a report with a table layout and would like to remove all bottom borders except when the next row contains a specified value. Kind of like grouping the data in section without the bottom border. How can this be done?
James
hello I want to Access report fields from a Table item and I've tried the follow example as in the http://www.telerik.com/help/reporting/faq-accessing-items.html
Private Sub tabelaLivroPonto_ItemDataBinding(sender As Object, e As EventArgs) Handles tabelaLivroPonto.ItemDataBinding
'get the textbox from the sender object
Dim textBox As Telerik.Reporting.Processing.TextBox = DirectCast(sender, Telerik.Reporting.Processing.TextBox)
'get the table object
Dim table As Telerik.Reporting.Processing.Table = DirectCast(textBox.Parent, Telerik.Reporting.Processing.Table)
'get the detail section
Dim detail As Telerik.Reporting.Processing.DetailSection = DirectCast(table.Parent, Telerik.Reporting.Processing.DetailSection)
'get the raw value from the Report datasource directly
textBox.Value = detail.DataObject("DiaSemana")
MsgBox(textBox.Value)
End Sub
but I got the follow error in my reportviewer
"An erro has ocurred while processing table "tabelaLivroPonto" <- my table
Unable to cast object of type 'Telerik.Reporting.Processing.Table' to type 'Telerik.Reporting.Processing.TextBox'
Please, someone could help me?
ty
Hi,
I'm trying to develop a report and I'm having problems with border lines. I have text boxes drawn from the data Explorer in the detail section and I want vertical lines separating all the columns and horizontal lines after rows that contain a specified value. I'm having problems with vertical lines when the data in some columns span more than one row(see attachment). Also how can I create horizontal lines conditionally based on the data in the next row?
James
Hi,
Recently, I upgraded my reporting service from 8.2.14.1027 to 9.0.15.324. I am using grid in the report. In the previous version everything was ok, but in the new one, the grid data is repeating. For instance, I have 10 instance in a db table and they are completely different, in the new version, it shows the first instance 10 times in the report. Can you please help me about this?
Thanks in advance.
Hello, is there a plan to have a HTML5 Designer in the future?
(some other reporting solutions have such a designer (DevExpress, stimulsoft)
robert
There is some tutorial to create a default layout to reporting? I need some report base with header and footer standard, and when I create a new report, use this default as reference.
Thanks.
Is there a way to use HTML5 Report Viewer in a JSP application?
All of the examples I've seen use C# class ReportFileResolver.