Telerik Forums
Reporting Forum
1 answer
536 views

I'm receiving a http timeout on the ReportViewer, the underlying SP runs for 8+ minutes and I'm getting the error at about 7 minutes.

The timeout on ado.net is set to infinity (0) and the timeout on the scriptmanager is set to 30 minutes, the timeout is not occurring on the site but within the Viewer as the message is displayed withing the viewer canvas.

I don't know what timeout is timing-out

Thanks
Stef
Telerik team
 answered on 22 Mar 2016
1 answer
136 views

Hello everyone,

I'm new to Telerik Reports and I'm experiencing some problems with some html tags.

I'm using Kendo UI MVC controls to insert text into my database.

My problems start when I generate the telerik reports as well as exporting them to pdf or excel.

1) First problem, apparently the html tags are not render properly and I get markup tags into the report.

2) Second problem, If I have a "newline" using bold or underline I get an error in the report and exported file.

I've attached a small print screen from the exported pdf. 

 

Thank you.

Adrian

 

Katia
Telerik team
 answered on 22 Mar 2016
1 answer
182 views

I have a report that prints up to 8 images per page. There is an image description overlayed over each image. The description comes from the data, and if I export directly to PDF, still appears. If I export to Word, however, the description is gone. 

Is there a way to get the text into the Word export? There are reasons the user may need to export to Word instead of PDF.

Katia
Telerik team
 answered on 22 Mar 2016
4 answers
4.5K+ views
When I concatenate fields for a textbox value, e.g.

=Fields.MemberTitle1 + " " + Fields.MemberTitle2 + " " + Fields.MemberTitle3 + " " + Fields.MemberTitle4

if there is no data in one of the fields then nothing displays in the textbox at all.

why?




David
Top achievements
Rank 1
 answered on 21 Mar 2016
1 answer
126 views

I was previously using Telerik reporting on a project. The version I have is Q2 2014 SP1. The designer opens fine in Visual Studio 2013, but I get the following exception in Visual Studio 2015 when opening the report in the designer. I'm guessing the solution is going to be to upgrade to the latest version of Telerik reporting. I just need to do some minor maintenance, so if possible I'd like to avoid that. Thanks!

 

at System.ComponentModel.TypeDescriptor.AddAttributes(Object instance, <br>Attribute[] attributes)<br>at <br>Microsoft.VisualStudio.Design.VSDesignSurface.CreateDesigner(IComponent <br>component, Boolean rootDesigner)<br>at <br>System.ComponentModel.Design.DesignerHost.AddToContainerPostProcess(IComponent <br>component, String name, IContainer containerToAddTo)<br>at <br>System.ComponentModel.Design.DesignerHost.PerformAdd(IComponent component, <br>String name)<br>at <br>System.ComponentModel.Design.DesignerHost.System.ComponentModel.Design.IDesignerHost.CreateComponent(Type <br>componentType, String name)<br>at <br>System.ComponentModel.Design.Serialization.DesignerSerializationManager.CreateInstance(Type <br>type, ICollection arguments, String name, Boolean addToContainer)<br>at <br>System.ComponentModel.Design.Serialization.DesignerSerializationManager.System.ComponentModel.Design.Serialization.IDesignerSerializationManager.CreateInstance(Type <br>type, ICollection arguments, String name, Boolean addToContainer)<br>at <br>System.ComponentModel.Design.Serialization.TypeCodeDomSerializer.Deserialize(IDesignerSerializationManager <br>manager, CodeTypeDeclaration declaration)<br>at <br>System.ComponentModel.Design.Serialization.CodeDomDesignerLoader.PerformLoad(IDesignerSerializationManager <br>manager)<br>at <br>Microsoft.VisualStudio.Design.Serialization.CodeDom.VSCodeDomDesignerLoader.PerformLoad(IDesignerSerializationManager <br>serializationManager)<br>at <br>Microsoft.VisualStudio.Design.Serialization.CodeDom.VSCodeDomDesignerLoader.DeferredLoadHandler.Microsoft.VisualStudio.TextManager.Interop.IVsTextBufferDataEvents.OnLoadCompleted(Int32 <br>fReload)

Stef
Telerik team
 answered on 21 Mar 2016
5 answers
3.1K+ views
Hello!

The detail section of my report is dynamic therefore report might contain 1 or 2 or more pages depending on number of rows of data. In order the footer of the report to be printed only on the last page I placed footer block on page footer and set the properties 'PrintOnFirstPage=false' and 'PrintOnLastPage=true'.

Unfortunately, in two pages report I see rather big chunk of white space below the data rows on the first page. The data rows continue on the second page. I believe this space is simply space allocated by the system for page footer which in my case is not supposed to be printed on any page except the last one. Does anybody know whether it is possible to get rid of this white space or not?

Thank you very much in advance!
Katia
Telerik team
 answered on 21 Mar 2016
3 answers
960 views

Hello,

Actually I am using kendo reporting with MVC when I run my webpage and show the reports in my local pc all is great, but when I publish my webpage into a server and run it in a web browser the webpage is ok the problem is when I try to visualize the reports in the browser it gives me the following errors.

Internal Server Error:
An error has occurred.
Object reference not set to an instance of an object.

and

Internal Server Error:
An error has occurred.
Value cannot be null. Parameter name: source

Now I update to Kendo Reporting Q2 2015 and I have the following error:

Error registering the viewer with the service.
An error has occurred.
Object reference not set to an instance of an object.

What should I do?

I will appreciate your help.

Thank you.

Nasko
Telerik team
 answered on 21 Mar 2016
7 answers
558 views
Hello,

anybody able to display vector based images (svg) in a report using PictureBox or any other Telerik control i can use in a Class based reporting solution


Thanks for any help on this
Stef
Telerik team
 answered on 21 Mar 2016
5 answers
412 views
Hello Telerik team,

do you have a sample project same as the (master detail report) but using programmatic coding. Just like in the sample,

1. Created a Department class and an employee class, the department class contain a list of employee as one of the property for the class.
2. Created as employee report with some details that will serve as my subreport
3. Created as master class that will hold the department information, then added a subreport control (RptEmployee as the ReportSource)
4. I assigned the parameters from the UI (DepartmentID)
5. The datasource was assigned at the WEB UI level (ReportViewer) RptDepartment.datasource

Now I'm stuck on the Subreport1_needdatasource event (how do I pass the data to the subreport)?
I do have access to the complete datasource so as the parameter which I can see from InnerReport.Parameter, but how do I go about assigning the right datasource item during need datasource? i got the a sample code below and somehow working but is there a better way?

        Dim sr As Telerik.Reporting.Processing.SubReport = TryCast(sender, Telerik.Reporting.Processing.SubReport)
        If Not sr Is Nothing Then
            Dim deptID As Integer = sr.InnerReport.Parameters.Values(0)
            For Each item As Department In Me.DataSource
                If item.DepartmentID = deptID Then
                    sr.InnerReport.DataSource = item.Employees
                    Exit For
                End If
            Next
        End If

Thanks for your help.
 
Stef
Telerik team
 answered on 21 Mar 2016
2 answers
230 views
Hi, we use web api call a report project library and show the report in html report view, I found a issue, sometimes when I click the preview button, the parameter area on the right will auto hide, if you click the top parameter area button, it will show again. I can't find the reason, it looks like happen sometimes. I have already update the report to 2016 SP1. How can I resolve this issue?
Henry
Top achievements
Rank 1
 answered on 21 Mar 2016
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?