Hello,
I have a TRDP report file with a WebServiceDataSource pointing to a web service with Telerik.Reporting dlls version 13.2.19.918.
When I try to view the report using the report viewer, I get an error: "Invalid format '= Parameters.token.Value'".
I stepped through the code and the error comes from the web request that the WebServiceDataSource creates - it is initialized with the string
value " = Parameters.token.Value" instead of the computed expression.
When I switch back to the old version 13.1.19.618, everything works fine.
Is it a bug in the new version or is something that I missed?
Hi All , hope you can help here.... trying to setup a sub report only to run based on a user selection. Can this be done with an expression in the sub report property box (reportsource= or or binding)? If binding I'm not sure how to bind the parameter as the drop down only gives me ReportSource. I saw a post that suggests I can do this not explain how.
I'm creating an invoice report that sometimes requires a group to continue for multiple pages.
Is there a way within Report Designer to create a group-based page counter?
For example:
A report is 30 pages long but is split and page broken by a group.
The page counter for each grouping should display the current page, along with the number of pages for that specific group. Something like "Page 2 of 4"
Thanks! -Eric
Hi,
I have created a TRDX report files using Telerik stand alone report designer. I created an asp.net web application and calling the TRDX report in the browser using telerik report viewer control. Below is the code used in the page load to call trdx report.
var reportSource = new UriReportSource() { Uri = "EVB_002.trdx" };
this.ReportViewer1.ReportSource = reportSource;
We need to implement support for different languages in these reports, example when user wants to see report headers in French, there must be an option for user to select the language. I have gone through following 2 links given in telerik documentation and created a resource file(.resx).
http://www.telerik.com/help/reporting/report-viewer-localization.html
http://www.telerik.com/help/reporting/advanced-localizing-reports.html
Please let me know the next steps to associate the resource files with telerik report viewer so that reports can be viewed in other languages.
Thanks,
Daniel
I have designed report template using standalone designer report(trdp extension).
I consumed that report template in my application and pass data to that report template to deliver complete report.
Everything works fine , but now i need to achieve localisation for those standalone report .
Please tell me the steps how I can add localisation for the culture "zh-HK" in the standalone report.
I have a nested table in a textbox of a table and I am having trouble getting the summary of all the records in the nested table.
I can get the summary of each group in the nested table. However, I cannot get the summary for all the records together.
I have posted the data structure with sample data below.
The data source of the parent table is "= ReportItem.DataObject.TicketReportsDC"
I have added a row "Outside Group - Below" and I have tried "=Sum(Fields.TicketDataContract.TicketJob.TicketDetails.OrderAmount)". This gives me an error :'OrderAmount' is not defined in the current context.
The data source of the nested table is "= ReportItem.DataObject.TicketDataContract.TicketJob.TicketDetails"
I have added a row "Outside Group - Below" and put "=Sum(Fields.OrderAmount)" in the appropriate textbox. This gives me the Summary for the individual ticket. ($1650.00, $1200.00, and $625.00 for the below sample data)
I have tried other possibilities and am not haveing any luck getting this. I believe it is due to the fact that the "TicketDetails" is a list within a list (TicketReportsDC) in the Data Structure.
Can anyone give me any ideas for referencing the "OrderAmount" at the top level? With the sample data below I would expect a total of $3475.00.
Thanks
James
-----------------Data Structure with Data ------------------
{
"TicketReportsDC": [
{
"TicketID": 1212
"TicketDataContract": {
"TicketJob": {
"TicketDetails": [
{
"Item#": 123
"Quantity": 3
"OrderAmount": 1500
}
{
"Item#": 124
"Quantity": 1
"OrderAmount": 100
}
{
"Item#": 125
"Quantity": 2
"OrderAmount": 50
}
]
}
}
}
{
"TicketID": 1240
"TicketDataContract": {
"TicketJob": {
"TicketDetails": [
{
"Item#": 123
"Quantity": 2
"OrderAmount": 1000
}
{
"Item#": 124
"Quantity": 2
"OrderAmount": 200
}
]
}
}
}
{
"TicketID": 1245
"TicketDataContract": {
"TicketJob": {
"TicketDetails": [
{
"Item#": 123
"Quantity": 1
"OrderAmount": 500
}
{
"Item#": 124
"Quantity": 1
"OrderAmount": 100
}
{
"Item#": 125
"Quantity": 1
"OrderAmount": 25
}
]
}
}
}
]
}
Whatever I try, the standalone Report Designer always displays "No reports available" in the "Select Reports to Import" dialog.
I tried to keep it as simple as possible:
Screenshots attached
hi,
I would like to display the datetime interval value from data field.
I am using the standalone report designer and my report has chart and summary data by group. I have tried out the aggregate function but my function will display the interval for inner group only. Kindly help to advise how to get this?
The report data structure would be like the following
Name,QtyName,DateTime
DV10002,Current Phase B,2016-09-05 00:15:00
DV10002,Current Phase B,2016-09-05 00:30:00
DV10002,Current Phase B,2016-09-05 00:45:00
DV10002,Current Phase B,2016-09-05 01:00:00
DV10003,Current Phase B,2016-09-05 01:00:00
DV10003,Current Phase B,2016-09-05 01:30:00
DV10003,Current Phase A,2016-09-05 01:00:00
DV10003,Current Phase A,2016-09-05 01:30:00
e.g DV10002
Current Phase B
Interval : 15 mins
DV10002 Summary
DV10003
Current Phase B
Current Phase A
Interval : 30 mins
DV10003 Summary
I have also attached the sample report.
Thank you