Hello!
Is it possible to place a row group in the middle of table?
I want to achieve the following result with Telerik Reporting (see Example.png) : I want to have two synchronized by height list of rows single textbox separating them. No matter if they [rows] will be presented as two different tables or single one. If this feature cannot be achieved with default telerik reporting functionality is there any workaround? (for example, binding for array, that will contains heights or something like that).
I dont know if it changes something, but I need to have more than one column, that represented as single textbox ("merged" column in picture).
Hi,
sorry if this question have already been asked, but I was not able to find any clear answer.
Is it possible to have a Telerik Report definition in a new SDK-style project in VS2017?
I've created a new project "Class Library (.NET Core)" and changed the target framework to 4.6.2
I've then proceeded to add "Telerik Report R3 2018 (Blank)". The following error message is shown:
---------------------------
Microsoft Visual Studio
---------------------------
The reference "Telerik.Reporting, Version=12.2.18.1129, Culture=neutral, PublicKeyToken=a9d7983dfcc261be" could not be added to the project. This wizard will continue to run, but the resulting project may not build properly.
---------------------------
OK
---------------------------
After pressing 'OK', I have a new report. I'm able to open it with designer, but the designer window is empty.
Apparently, something is wrong here. Now, the question is if it's me doing something wrong or is it Telerik Reporting not supporting the new project format?
If the second is the case, are there any plans to support that in the future? We use this new project format all around our solutions and are very happy with it. But we still have to keep Telerik Reports in the old-fashion projects, which causes some friction.
Best regards,
Dmytro
When using the newer kendo SASS themes as found in npm, the toolbar of my telerik reports disappears. telerikReportViewer-css is still being loaded, but the toolbar does not end up with any visible buttons.
Are telerik reports incompatible with the kendo SASS themes found in npm? How can I get this working with the SASS styles as they work better with the Kendo React components.
Hi, I have a big fat object containing data for a report (printed report).
For ease of work i like to use subreports.
How can i pass the datasource from parent report to subreport? It does not make sense to recreate the objects on subreport since i already have them.
For sure exists some easy way but i can't find it.
Best Regards
report can't export excel Error Internal Server Error Parameter is not valid.
{"message":"","exceptionMessage":"Parameter is not valid.","exceptionType":"Telerik.Reporting.Services.Engine.DocumentRenderException","stackTrace":" at Telerik.Reporting.Services.Engine.Document.GetDocumentInfo()\r\n at Telerik.Reporting.Services.Engine.ReportEngine.GetDocumentInfo(String clientID, String instanceID, String documentID)\r\n at Telerik.Reporting.Services.AspNetCore.ReportsControllerBase.GetDocumentInfo(String clientID, String instanceID, String documentID)\r\n at lambda_method(Closure , Object , Object[] )\r\n at Microsoft.Extensions.Internal.ObjectMethodExecutor.Execute(Object target, Object[] parameters)\r\n at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.SyncActionResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)\r\n at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.<InvokeActionMethodAsync>d__12.MoveNext()\r\n--- End of stack trace from previous location where exception was thrown ---\r\n at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)\r\n at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)\r\n at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.<InvokeNextActionFilterAsync>d__10.MoveNext()\r\n--- End of stack trace from previous location where exception was thrown ---\r\n at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow(ActionExecutedContext context)\r\n at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)\r\n at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.<InvokeInnerFilterAsync>d__13.MoveNext()\r\n--- End of stack trace from previous location where exception was thrown ---\r\n at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)\r\n at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)\r\n at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.<InvokeNextExceptionFilterAsync>d__24.MoveNext()"}
Hi all,
I am attempting to build an invoice type of report. The goal is to have the customers bill to/ship to in the "Header", the items they ordered listed in the "Details" and the subtotal, taxes, grand total all in the "Footer".
I have the "Footer" set to print at the bottom of the page.
The challenge is to create vertical lines in the details section to separate the fields of information visually. I wish these to extend all the way down from the top of the "Detail" section to the top of the "Footer" section.
In Crystal Reports (sorry) I would draw a line from the top of one section and pass it into the next section.
How can this be achieved?
I attached a simple example of what I am seeing. In the picture, the goal is to extend that line all the way down to the area labeled as "Group Footer".
Hi,
It has been observed that some blank rows with font size 1 have been inserted in one of our report. Could you please help us how to remove them?
I have attached sample report for reference.
How do you format a text box to have a hanging indent? In my report I want to see a multiline text box where the first line is at the left margin, but all subsequent lines are indented.
Hello,
Today i have made an update from R1 2018 to R3_2020_SP1_14_2_20_1021_DEV and now all my reports does not behave as usual.
For instance, a simple data ItemDataBinding of a PictureBox to populate the phisical path of an image is not working ...
Same thing to htmltextbox ... it is not puting the value with ItemDataBinding to the report.
Can you help me? What do you need from me to solve my situation?
This is my code, that in the version R3 worked:
Private Sub PictureBox3_ItemDataBinding(sender As Object, e As EventArgs) Handles PictureBox3.ItemDataBinding
Dim item As Processing.ReportItemBase = DirectCast(sender, Processing.ReportItemBase)
If IO.File.Exists(System.Configuration.ConfigurationManager.AppSettings("Images").ToString() & "cabecalho.PNG") Then
PictureBox3.Value = System.Configuration.ConfigurationManager.AppSettings("Images").ToString() & "cabecalho.PNG"
End If
End Sub
Private Sub HtmlTextBox12_ItemDataBinding(sender As Object, e As EventArgs) Handles HtmlTextBox12.ItemDataBinding
Dim item As Processing.ReportItemBase = DirectCast(sender, Processing.ReportItemBase)
If IO.File.Exists(System.Configuration.ConfigurationManager.AppSettings("Images").ToString() & "contrato_header.txt") Then
Dim fileReader As String
fileReader = My.Computer.FileSystem.ReadAllText(System.Configuration.ConfigurationManager.AppSettings("Images").ToString() & "contrato_header.txt")
HtmlTextBox12.Value = fileReader
End If
End Sub
Thanks,
Nuno