Has anyone figured out how to provide an incremental build version of a report (report definition file) that can be read by the web app? I would like to display this version for tech support so they can see if the client has the latest version of that particular report.
I'm NOT talking about the Telerik version the report was created in. I'm talking about versioning the report itself
Hello everyone! I am a very new user of Telerik Report Designer. We would like to have the following text show up via a text box on all of our reports.
Copyright 2021
We would like the year to automatically update every year and not have to go back in to the reports to manually change the year. Can someone please help me with this? I have an expression set up right now that just says = 'Copyright 2021'. Thanks!
Hi,
We use Web service datasource almost in all of our reports. In web service datasource we use OData query to get some information from our server. We usually customize web service data sources by using inline parameter @url to set value for Service Url property. Inline @url parameter will be calculated based on some formula (see ConfigureRequestParameters.PNG attached picture, @url parameter value can be complex). We use Html5ReportViewer, .NET5.
The question here is how to get complete odata url for the specific webservice datasource of the report programmatically (we also implemented custom report resolver in our project)? Meaning that what will be the final version of OData url on execution process?
As a sample report you can use attached report (TestProductReport.zip).
What we want is to get this complete odata url:
In design mode you see ConfigureRequestParameters.PNG.
Thanks,
I'm using Report Designer 15.0.21.326:
I'm trying to return all transactions that occurred over a single day. When I use a report parameter to choose the date I want to return results for, it only returns results that occurred on the date specified at specifically 0:00:00. To work around this, I have defined an end date report parameter so I am entering a date range of 1/1/2020 - 1/2/2020. My report filter is filtering >= StartDate and < End Date. This effectively filters all transactions for date 1/1/2020.
Is there a way to have one date prompt and set the filter to add 24 hours to the date value that is selected rather than defining a start and end date report parameter?
This expression does not work (it should).
=SUM(IIf(Fields.Grade In("07","08","09","18"), Fields.[Total Cost],0))
Is there a report source that works with reports hosted on Telerik Report Server?
We need to develop a service that prints reports directly to a printer and want to host the report in the report server for easy maintenance.
I see report viewers have a ReportEngineConnection property, but I could not find anything like this for report source.
Am I missing something, or has this not been implemented to print reports with the ReportProcessor?
The closest thing I see is the UriReportSource, but this requires a trdp file to be included in the project output.
Hi sir,
I create dynamic report in that i use four column create dynamic one of the columns contain 100 and above character . i use text wrap as true.
like this come
with text wrap as false.
Dim detailsTxt As New Telerik.Reporting.TextBox
detailsTxt.Size = New SizeU(Unit.Inch(col.ColumnName.Length), Unit.Inch(0.2))
detailsTxt.Location = New Drawing.PointU(Unit.Inch(iniLeft), Unit.Inch(0.01))
detailsTxt.Style.Font.Size = New Unit(10)
detailsTxt.Style.VerticalAlign = VerticalAlign.Middle
detailsTxt.Style.TextAlign = HorizontalAlign.Left
detailsTxt.TextWrap = False
detailsTxt.StyleName = "Data"
detailsTxt.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid
detailsTxt.CanGrow = True
detailsTxt.KeepTogether = True
detailsTxt.Multiline = True
' detailsTxt.Format = Format("{0:n}")
detailsTxt.Value = "=Fields.[" + col.ColumnName.ToString & "]"
detail.Items.Add(detailsTxt)
how to show all column same size, an d show all character with in text box size
like this
please give some solution.
Hi, Dear Support :
I am using the new version HTML5 ReportViewer (version 15) in .net core 3.1.
I mark my row group as document map point , then the document map work fine when the report first render.
Then I zoom out or in the report , the document map NOT Navigate to the right report position。
does it work as design ? or something or cfg need to be set ?
Best Regard!
Hi,
We are using the Telerik angular reportviewer (11.20.916 and api:v14.2.20.916 .net core 3.1.12)
In the report we are making use of a multiselect combobox.
The reportviewer is initiated with the parameters: editors: {
singleSelect: 'COMBO_BOX',
multiSelect: 'COMBO_BOX'
}
The result looks like the attachment 1 (as expected because of the COMBO_BOX style).
But we want t have it more like in the style of the designer (attachment2)
How can we achieve this?
Regards,
Bart