Telerik Forums
Reporting Forum
0 answers
93 views

Good Afternoon Telerik,

I am trying to narrow my report results on a DateTime value for an entire month of results. due to it being a schedule some of the times will go into the next day (in example: 11:00 PM 11/02 Thursday to 7:00 AM 11/03 Friday) However, when I run the report. It is only showing times for 7:00 AM to 11:00 PM that night. it reversed the entry instead of it going from 11:00 PM first day to 7:00 AM next day. Is there anyway for me to fix this?

Austin
Top achievements
Rank 2
Iron
Iron
Iron
 asked on 05 Dec 2023
1 answer
168 views

Good Morning Telerik Forums,

I have a field called "Report Ran" followed by another table with a field of [= Now()] They display correctly. However, they are two separate fields.

 

If I add them together into one field (example) Report Ran: [=NOW()] it displays exactly like that. Never executing the data display.

 

How can I get it so that I can use a one field with text and a data all within one? so that it can display as Report Ran: 12/03/2023

 

Thank you!

 

 

__________________________

EDIT: I solved this after posting. See solve below.

 

I solved my own question.. I just started playing with close brackets.

 

Use braces { } to encapsulate. In example: Report Ran: {=NOW()} and it will display correctly as Report Ran: 12/03/2023

 

Thank you!

Austin
Top achievements
Rank 2
Iron
Iron
Iron
 updated question on 05 Dec 2023
1 answer
404 views

Hello,

I am trying to install Telerik.Reporting.Services.AspNetCore.Trail in .net 6 application.

Below are the following things that i have done,

  1. Go to Tools > NuGet Package Manager > Package Manager Settings, select Package Manager Sources, and then click the + button.

  2. Enter a Name for the Telerik NuGet feed, for example, telerik.com.

  3. In the Source field, enter https://nuget.telerik.com/v3/index.json and click OK.

 Added the Telerik NuGet feed as a Package source.

 Entered Telerik credentials in the Windows Authentication dialog.

Still i am unable to view Telerik.Reporting.Services.AspNetCore.Trail in package manager.

 

Todor
Telerik team
 answered on 05 Dec 2023
1 answer
83 views
Hi Support,

I am creating a Telerik report and in this report, I am using a few sub reports for some parts of this report. In one portion of the reports I need to display multiple items (detail with description) and it should be rendered in two columns. To render the content into 2 columns I used the Column Count property and with this, it works fine if I am running the subreport independently. But if I am using this subreport in the main report then this ColumnCount feature is not working so please let me know how I can render a subreport content into 2 columns.  
Please see the screenshot.  
Sample image is the one we are trying to achieve in output . 
Report design is the one we have designed for our work. When we run it independently it works but when we add it as a sub report to a main report it fails. 
Sample Sub report - the one working when we try it independently. 
Dimitar
Telerik team
 answered on 05 Dec 2023
1 answer
192 views

I want to choose which tool in the toolbar should display certain tools. How can I set this up? I'm using backend ASP.NET Core MVC and frontend Angular.

0 answers
94 views

Hello,

i'm using Telerik Reporting 2020, when add TOC section in report show error: Object reference not set to an instance of an object

Fadi
Top achievements
Rank 1
 asked on 03 Dec 2023
1 answer
121 views

So, what we need to know is if we can add our new Telerik  service into a solution that 4 developers access, but we only allow the reporting dev to work on the reports and not have to pay for 4 licenses. Or does it need to be a stand alone project?

Essentially, would the Telerik reports still work if it's in a Project that is also accessed by multiple developers?

5 answers
628 views

Hello,

I understand that currently, Telerik Reporting supports only .NET Framework projects in the Visual Studio Designer due to limitations of .NET Core 3.0 support.  However, I'm wondering, will this be addressed when Microsoft releases .NET 5 later this year?  Will we be able to design Telerik Reports in Visual Studio for .NET 5 projects?

Thanks.

Deepak Gupta

Todor
Telerik team
 updated answer on 30 Nov 2023
1 answer
127 views

Hello, 
I tried to add parameters to change default format from LIST_VIEW to COMBO_BOX but i can't do it.
I added like below but it don't work
version used 16.2.22.914

<tr-viewer 
    #viewer1
    [containerStyle]="viewerContainerStyle"
    [serviceUrl]="address"
    [reportSource]="{
        report: test.trdx,
        parameters: {
         editors: {
             singleSelect: viewer.ParameterEditorTypes.COMBO_BOX,
             multiSelect: viewer.ParameterEditorTypes.COMBO_BOX
         }
     },
    }"
    [viewMode]="'INTERACTIVE'"
    [ready]="ready"
    [scaleMode]="'SPECIFIC'"
    [scale]="1.2">
</tr-viewer>


Dimitar
Telerik team
 answered on 29 Nov 2023
8 answers
656 views

Hi Guys

I have some Telerik Reports and i'm using Telerik Report View on MVC Razor view. I can easly translate my data inside Report but i cannot translate ReportView elements like Report Toolbar 

How can i handle this? Here below my one of report example.

@{
        DateTime today = DateTime.Today;
        DateTime startOfMonth = new DateTime(today.Year, today.Month, 1);
 
 
        DateTime today1 = DateTime.Today;
        DateTime endOfMonth = new DateTime(today1.Year, today1.Month, DateTime.DaysInMonth(today1.Year, today1.Month));
 
        UriReportSource trial = new UriReportSource();
        trial.Uri = "Card Summary Report.trdx";
        trial.Parameters.Add("DateFdy", startOfMonth);
        trial.Parameters.Add("DateEnd", endOfMonth);
        trial.Parameters.Add("Culture", (string)ViewData["lang"]);
    }
    @(Html.TelerikReporting().ReportViewer()
        .Id("reportViewer1")
 
        .ServiceUrl("/api/reports/")
        .ReportSource(trial)
        .ViewMode(ViewModes.INTERACTIVE)
        .ScaleMode(ScaleModes.SPECIFIC)
        .Scale(1.0)
        .PersistSession(false)
)
Dimitar
Telerik team
 answered on 29 Nov 2023
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?