Telerik Forums
Reporting Forum
1 answer
171 views
In the stand-alone report designer, it is possible to export templates using an export template wizard.  Is the same thing possible in the visual studio designer?  If not, is there any way to manually create report templates in visual studio?
Nasko
Telerik team
 answered on 01 Jul 2014
1 answer
67 views
Hi,

Currently I am investigating the testing facilities available for Telerik specific reports.

As part of the current Telerik Testing Framework, what coverage is offered to develop coded unit tests (C#) around a Telerik instance reports or Telerik URI reports?

Kind regards,

QT1
Nasko
Telerik team
 answered on 01 Jul 2014
1 answer
65 views
Hi,

first I want to say, that I am really surprised about the speed improvements of the current release. After upgrading to q2/14 the speed of excel export was improved from about 14 minutes to approx. 45 seconds. Report size: 7000 rows, 40 columns

Furthermore I have one suggestions for the excel export and cross tables. Maybe you can realize them or maybe it is already planned.

When exporting to excel it will be good, if the groupings are also available in excel. I know that they are built up by merging the appropriate cells, but it will be better if you use the native excel function for this, that a user is able to collapse the rows in excel, too.


Regards

Karsten
Stef
Telerik team
 answered on 01 Jul 2014
7 answers
953 views
Hello,

I found that the HTMLTextbox cannot support all HTML markups http://www.telerik.com/help/reporting/report-items-html-text-box.html.

Is there a way wherein I can create a 2 x 2 cell content inside the HTMLTextbox?(just like using a table) I tried using
<Div style='display:inline'>Data1</Div><Div style='display:inline'>Data2</Div><Br /><Div style='display:inline'>Data3</Div><Div style='display:inline'>Data4</Div>

but it seems that the htmltextbox does not support "display:Inline" style. Also when I use span, I cannot control the width which cause misalignment of the data.

Any ideas would be helpful.

Thanks,
KS
Top achievements
Rank 1
 answered on 01 Jul 2014
1 answer
116 views
Hi there,
Is there a way to access the values contained in fields within the same detail row at runtime (not during processing with itemdatabinding/itemdatabound)?
What I am trying to accomplish is to have a user double-click or single-click a field, retrieve an id from within the same detail row and open the associated editor for quick access.
For example, in an invoice report, a user may click on the invoice number and that invoice will appear for them to edit.
Within the double-click event I can access the TextBlock that was clicked on but when inspecting the control hierarchy, there does not seem to be a way to determine where a detail row begins or ends as all page content is lumped onto one canvas.  I also tried to search by Name (as each field within the report is named appropriately) but the name is not passed to the actual TextBlock control.
The next thing I tried was to add a navigate to url action to the field.  But I was unable to intercept the action to provide custom processing logic.

Any insight would be greatly appreciated.
Nasko
Telerik team
 answered on 01 Jul 2014
1 answer
169 views
Why does Clear not pass in the key to clear?

http://www.telerik.com/help/reporting/configuring-telerik-reporting-custom-provider.html
Stef
Telerik team
 answered on 01 Jul 2014
15 answers
899 views
Hi Guys,

I have currently updated my Telerik Reporting Services to the latest Version of Q3.

My Application uses Silverlight and Telerik Silverlight Report Viewer that gets the data from the "ReportService.svc" WCF Web Service.

When I have more than 1000 records (transactions) I always get a timeout after about 1 minute. My suggestion is that this is the default max time of a WCF web service call before a timeout exception is thrown.

I already adjusted the service behavior and timeout settings in the hosting web application that provides the ReportService.svc service.

What I am missing is the client endpoint configuration in my Silverlight application.

My Silverlight code for the report viewer is:
 
<telerikReports:ReportViewer   
    x:Name="repViewer" Margin="5" Width="Auto" Height="750"   
    ReportServerUri="../ReportService.svc"   
    Report="Reports.TransactionReport, Reports, Version=1.0.0.0, Culture=Neutral, PublicKeyToken=null">  
</telerikReports:ReportViewer>   
 

Where can I set this client endpoint parameters to increase the timeout settings in Silverlight??

I really preciate any quick help on my issue. I think it can only be a configuration issue.

Thanks a lot
Heiko
Sobiya
Top achievements
Rank 1
 answered on 01 Jul 2014
4 answers
725 views
Hi all,

I read a lot of threads and documentation around the web, but I can't understand the point.

I have a report bounded to a dataset of many records; each record is rendered in a report page, but having several subreports, a single record report spans between several pages.

I need to have a field of the record in the header/footer section, so users can see of how many pages is a record composed.

I know that PageHeader and PageFooter can't use Fields expressions, but I suppose that this is a very common request.

Any hints?

Thank you.
Stef
Telerik team
 answered on 30 Jun 2014
2 answers
926 views
Hi,

I am using version 6.2.12.1017 of your Reporting components.

PROBLEM
=========
I am getting the following error in a textbox, when my report runs:

The expression contains undefined function call ConvertIntToString().

MORE INFORMATION
==================
- I have a C# Reporting project that contains the reports and a public static class that contain two public static methods.
- The methods names are "GetParentAppType" and "ConvertIntToString" and they both return a string.
- This class is in the same project as my report class.
- Here is the strange part:  I call the two different methods in the Value Property of two different textboxes.
   One textbox DOES find the call to the GetParentAppType Method, but the other textbox gives the error because for some reason it cannot find the ConvertIntToString function.

- Below is what has been entered in Value property of each textbox.

= Cbs.Reporting.Reports.CommonReportingMethods.ConvertIntToString(Fields.BowlerHasCountermeasure)
= Cbs.Reporting.Reports.CommonReportingMethods.GetParentAppType(Fields.parentAppType)

NOTE:  I didn't type this in.  I used the "Edit Expression" dialog and I picked my functions from the "Functions - Misc" treeview.  I've attached an image of how the functions display in that dialog, which means in the designer, those functions are found.  But at runtime, the ConvertIntToString function is not found.

I'm sure if I move these functions to the report's class (code-behind), it would probably find it, but I will want to share these functions across many reports so I don't want to duplicate them in every report.

Any ideas what is causing the error?

Thanks,
Michael

Michael Hunt
Top achievements
Rank 1
 answered on 27 Jun 2014
1 answer
176 views
I am trying to get rows where the filed "Cost" does not have any value, formatted in red.
So far I have tried in several ways but the one that I thing should be closer to the right one is stye following applied to the detailed section of the report:

Expression: Field.Cost
Operator:      =
Value:           ="&nbsp;"

I also tried with value: = Null

but I get errors in the report and no formatting! 
The error I am getting is in the attached picture, however it says "Cannot perform = operation on System.Double and System.String. Same with "Like"
What should I do to get this expression correct?

Thanks,
Felice
Stef
Telerik team
 answered on 27 Jun 2014
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?