Telerik Forums
Reporting Forum
5 answers
241 views

Dear Telerik,

My report on production is not function. I guess load balancer is involved.

I dont know what i could do. I'm totally stuck.

Atipong
Top achievements
Rank 1
 answered on 10 Apr 2019
3 answers
320 views

We have ongoing horrible issues with the Telerik reporting whereby textboxes will not resize to fit the content.  Multi-line etc. is set as required and the field will ~90% of the time work and resize however the rest of the time it will not resize at all.

 

For example you may have text of:

Line 1
Line 2
Line 3

The textbox in the report will only show Line1 and then nothing, even though auto grow etc. are turned on.

This has been a massive problem for us and we get no end of support calls relating to this.  We've tried to reproduce it however it depends on both the text content and the position on the page and other elements in the report.  Understandbly clients are not happy if their report misses the description on an invoice or work order.  We've lost countless hours on this now and are transitioning to a different reporting solution for most elements as we just can't take it any more!

 

I'm assuming the response from Telerik is the same as the other private tickets we've raised which is we cannot reproduce.  I would encourage Telerik to take a look at the actual code and see what may cause the resize action to fail.

I would encourage anyone looking for a reporting solution that shows a dynamic amount of text, ie. 1 line at times or 2 or more lines other times, PLEASE DO NOT USE TELERIK REPORTING!!!! USE ANYTHING ELSE IF YOU WANT TO PRESERVE YOUR SANITY!

Milen | Product Manager @DX
Telerik team
 answered on 09 Apr 2019
1 answer
566 views

how can i change my data to camel-case or proper-case (like first word of each letter to be capital) in text box, something like 

this is example -> This Is Example

Silviya
Telerik team
 answered on 09 Apr 2019
8 answers
4.3K+ views
i am trying to display order numbers for every data row in detail section. There is no "order" column in database.

Output will be:

order id name
1 57 jack
2 23 denis
3 67 harry


ps: i am sorry for my english (:
Silviya
Telerik team
 answered on 09 Apr 2019
13 answers
2.3K+ views
Hello.  We've recently purchased Telerik Reporting and so far for our initial needs, it's been great.  But now for a new project, we are trying to basically create a large contract/invoice template.  The reason is we have 13 different contract types that can be created, but they all have the same text in sections while different text in others.  For the changed text, we are pulling it from a SQL DB and putting it into textboxes in this new report.

The problem is how the CanGrow property of the Textbox behaves.  In our original need, we set the width for a basic name/address textbox to be the max it would ever be, but the height to be small.  When the data was pulled in, the textbox would automatically grow vertically to accomodate all the data.  Our needs are different this time and instead of the textbox auto-growing vertically, we need it to auto-grow horizontally (or shrink as well).  So if we set a textbox to a size that's too big for "tiny text", it would auto-shrink horizontally to fit, or auto-grow for text like "This is a very long sentence that wouldn't normally fit into the textbox width".

My question is, if this is possible, how do we do this?  We've tried setting both CanGrow and CanShrink to True, also tried setting MultiLine and TextWrap to False, but nothing seems to work.  Is there any way?  Thank you.
Giuseppe
Top achievements
Rank 1
 answered on 08 Apr 2019
3 answers
183 views
Hi,

I'm trying to create a scatter graph with DateTime points on the x-axis. A problem here is that the labels on the x-axis overlap when there are to many data points.

A solution that I found was to manually determine my Labelsteps, this solutions doesn't work for all my use cases. Is there a way to auto-scale the labelsteps? I've read on the forum that the "Axis AutoStep Functionality" could be a solution. Is this feature available for reporting graph? I cannot seem to find this functionality.



Thanking you for your asssitance.
Ivan Hristov
Telerik team
 answered on 08 Apr 2019
4 answers
486 views

Hi,

 

We have a requirement to set the NoHeader parameter value to true in some reports and false in others. Is there a way to do it from the code behind of the report? I have found a way for window forms application (https://www.telerik.com/forums/programmatically-set-noheader). But our requirement is for web application

 

Regards,

Majar
Top achievements
Rank 1
 answered on 08 Apr 2019
1 answer
111 views

I have enabled interactive sorting in the Telerik reporting but I now want to style the header of the table(reduce the size between button and the heading text) and the sort button. Is it possible to do this in the report viewer

 

Regards,

Majar

Silviya
Telerik team
 answered on 08 Apr 2019
1 answer
313 views

In the html5 report viewer, we are using a jquery selector

 $("reportViewer").telerik_ReportViewer({...});

But what if we want to use vanila javascript selector for it like,

 document.getElementById("reportViewer").telerik_ReportViewer({...});

but when I am using this it is showing me an error: Uncaught TypeError: reportViewer1.telerik_ReportViewer is not a function

 

Silviya
Telerik team
 answered on 05 Apr 2019
3 answers
247 views

We are using the Telerik for MVC, and we have an MVC application we wish to actually add a report to.  But when we do, we get the following error:

Error CS0012 The type 'ApiController' is defined in an assembly that is not referenced. You must add a reference to assembly 'System.Web.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.

I cannot seem to find a System.Web.Http.dll that is earlier than the v 5.2 on my system.  I tried adding it via NuGet, but it won;t add it, giving me the following error:

PM> Install-Package System.Web.Http -Version 4.0.0
Attempting to gather dependency information for package 'System.Web.Http.4.0.0' with respect to project 'ReportTest', targeting '.NETFramework,Version=v4.6.1'
Attempting to resolve dependencies for package 'System.Web.Http.4.0.0' with DependencyBehavior 'Lowest'
Resolving actions to install package 'System.Web.Http.4.0.0'
Resolved actions to install package 'System.Web.Http.4.0.0'
Install failed. Rolling back...
Package 'System.Web.Http.4.0.0' does not exist in project 'ReportTest'
Package 'System.Web.Http.4.0.0' does not exist in folder 'C:\VensureApplications\ReportTest\packages'
Install-Package : Could not install package 'System.Web.Http 4.0.0'. You are trying to install this package into a project that targets '.NETFramework,Version=v4.6.1', but the package does not c
ontain any assembly references or content files that are compatible with that framework. For more information, contact the package author.
At line:1 char:16
+ Install-Package <<<<  System.Web.Http -Version 4.0.0
    + CategoryInfo          : NotSpecified: (:) [Install-Package], Exception
    + FullyQualifiedErrorId : NuGetCmdletUnhandledException,NuGet.PackageManagement.PowerShellCmdlets.InstallPackageCommand
 

So how do I get this thing to work?

 

Using VisualStudio 2015

Telerik v2018.1.117.545 (Kendo.mvc.dll)

 

Silviya
Telerik team
 answered on 05 Apr 2019
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?