Telerik Forums
Community Forums Forum
0 answers
727 views

Hi,

I know this product is retired since long ago.

But in our 10 years old legacy code, we have now requirement to migrate few tables in MySQL from SQL server. This old code is using Telerik.OpenAccess Nuget version 2016.2.822.1 and there is complex business logic written using it.

It is hard to change that bulk of code to use Entity Framework, so we thought to use My SQL connector with Telerik ORM as explained here https://docs.telerik.com/data-access/developers-guide/database-specifics/database-specifics-mysql-overview

I've everything setup as per the Article above. But when I run this code, it throws error which says Connection option 'datasource' is duplicated.

The connection string is perfectly fine and nothing duplicated in it: DataSource=127.0.0.1;port=3306;database=dbname;user=root;password=******

In fact, anything I change in connection string, it complains with same kind of error. For example Server=127.0.0.1;port=3306;database=dbname;user=root;password=******

It shows Connection option 'Server' is duplicated.

Kindly please help if you have used Telerik ORM with MySQL previously.

Aron
Top achievements
Rank 2
 asked on 23 Jun 2021
0 answers
2 views
We recently upgraded our application  with  latest version of Kendo UI, 2025.2.520.462. However, since the upgrade, we are facing challenges with existing features. Specifically, on the Kendo  grid update and destroy grid's methods are not calling our controller  end point whereas Read method is calling controller end point .For the reference I am sharing code below . Requesting you please help us on this blocker .In the previous version It was working .
.Read(r => r.Action("Get", "Order", new { totalCashCalculationId = totalCashCalculationId, langCode = langCode, brand=brand }))
.Update(update => update.Action("XYZABC_Update", "Order").Type(HttpVerbs.Post))
.Destroy(d => d.Action("XYZ_Destroy", "Order").Type(HttpVerbs.Post))

Shreesh
Top achievements
Rank 1
 updated question on 10 Jun 2025
1 answer
10 views

Hi Telerik Team,

We are using the Standalone Telerik Report Designer to create .trdx reports and upload them to a local Telerik Report Server. Our application is built in ASP.NET MVC and uses a helper function to load reports from the server using  UriReportSource the embedded Report Viewer.

Helper Function:

public static class ReportExtension
{
    public static IReportViewerBuilder GetReportViewerConfig(this HtmlHelper htmlHelper, string reportId, string reportSource, Dictionary<string, string> reportParams)
    {
        var uriReportSource = new UriReportSource
        {
            Uri = reportSource
        };

        foreach (var param in reportParams)
        {
            uriReportSource.Parameters.Add(param.Key, param.Value);
        }

        return htmlHelper.TelerikReporting().ReportViewer()
            .Id(reportId)
            .ReportServer(new ReportServer()
            {
                Url = ReadConfigData.REPORT_SERVER_URL,
                Username = ReadConfigData.REPORT_SERVER_USERNAME,
                Password = ReadConfigData.REPORT_SERVER_PASSWORD
            })
            .ReportSource(uriReportSource)
            .ViewMode(ViewMode.Interactive)
            .ScaleMode(ScaleMode.FitPageWidth)
            .PersistSession(false)
            .SendEmail(new SendEmail { Enabled = true })
            .Parameters(new Parameters
            {
                Editors = new Editors
                {
                    MultiSelect = EditorTypes.ComboBox,
                    SingleSelect = EditorTypes.ComboBox
                }
            })
            .EnableAccessibility(false);
    }
}

Currently, we have separate Report Server instances for each environment (local, staging, production). This setup works fine, but it's becoming inefficient because:

  • Whenever we create or modify a report in the local Report Server, we have to manually re-upload the same report to staging and production.

  • Even for small changes, we need to repeat the entire process for each server.

  • There's no easy way to track or sync updates between environments.

We are looking for a way to sync reports across report servers, or at least streamline the update process.

Is there any built-in support, recommended approach, or workaround to:

  • Automatically sync reports from one Report Server to another?

  • Export/import reports in bulk?

  • Keep multiple environments in sync efficiently?

Any guidance or tooling suggestions would be greatly appreciated. Thanks!

Best Regards,
Prabesh Shrestha

9 answers
278 views
Hello!

I would like to know how to delete the telerik user account I had to create in order to download a trial version a while ago. Unfortunately, I couldn't find any hints on how to do this. :-( Maybe someone here can help me to remove the account?

Any help appreciated.
Thanks in advance!
Missing User
 answered on 30 May 2025
1 answer
11 views

Hi Telerik Team,

I'm using Telerik Reporting in an ASP.NET MVC application. I have a generic helper method to configure the Telerik Report Viewer using a UriReportSource. Here's the function:

public static class ReportExtension { public static IReportViewerBuilder GetReportViewerConfig(this HtmlHelper htmlHelper, string reportId, string reportSource, Dictionary<string, string> reportParams) { var uriReportSource = new UriReportSource { Uri = reportSource }; foreach (var param in reportParams) { uriReportSource.Parameters.Add(param.Key, param.Value); } return htmlHelper.TelerikReporting().ReportViewer() .Id(reportId) .ReportServer(new ReportServer() { Url = ReadConfigData.REPORT_SERVER_URL, Username = ReadConfigData.REPORT_SERVER_USERNAME, Password = ReadConfigData.REPORT_SERVER_PASSWORD }) .ReportSource(uriReportSource) .ViewMode(ViewMode.Interactive) .ScaleMode(ScaleMode.FitPageWidth) .PersistSession(false) .SendEmail(new SendEmail { Enabled = true }) .Parameters(new Parameters { Editors = new Editors { MultiSelect = EditorTypes.ComboBox, SingleSelect = EditorTypes.ComboBox } }) .EnableAccessibility(false); } }

The Problem:

I'm using DateTime parameters (e.g., dateFrom, dateUntil) in my reports, and they appear in the report

parameter panel with the format MM/dd/yyyy. I want to show these dates as dd/MM/yyyy.

 



My Questions:

1. Is it possible to customize the display format (e.g., dd/MM/yyyy) of DateTime parameters in the parameter input panel?

2. If not, is there any workaround — such as setting culture explicitly for the viewer?

Regards,

Prabesh Shrestha


Justin
Telerik team
 answered on 28 May 2025
1 answer
7 views

Can telerik be used on all users from the same PC?

I have my telerik license installed on my home development PC.
But my wife has her own separate user account on it.
I noticed that on her user VS does not list any of the Telerik solution options. Yet when I try to install it says its already installed.

We both use VS and I like to keep the solutions sepated. 

Lance | Senior Manager Technical Support
Telerik team
 answered on 27 May 2025
0 answers
10 views

Morning.

I have to configure a new sharepoint connector on my Sitefinity installation.
I tried to configure all the information but when i tried to connect i recived the error message "invalid username or password".
The sharepoint server has the 2FA authentication , so i imagine that this is the problem. I saw on internet that is not supported, by sitefinity, the 2FA.  Is there some workaround or custom connector that i could implement to try to sync all the documents in sharepoint with sitefinity.

aieie
Top achievements
Rank 1
 asked on 27 May 2025
1 answer
10 views

Hello Telerik team,

I am currently working on a report using Telerik Report Designer, and I need to allow users to filter data based on a date range (i.e., "from" and "to" date). In Kendo UI, we have a convenient DateRangePicker component that allows selecting both dates in one UI control.

My question is:
Does Telerik Report Designer support a single “date range” parameter, or do we need to use two separate parameters? DateTime parameters (e.g., DateFrom and DateUntil) to simulate this functionality?

Is there any built-in way to do it using one parameter, or a recommended approach to simulating a range? Please let me know.

Regards,

Prabesh Shrestha

Petar
Telerik team
 answered on 27 May 2025
1 answer
19 views

Hi all

 

I'm getting a timeout when i try to connect to the v3 nuget server?

 

Not sure if its down or if i can check the status somewhere?

 

Thanks

Ivo
Telerik team
 answered on 21 May 2025
2 answers
18 views

 

Hi Telerik Team,

I’m designing a Telerik Report Designer report that includes a line chart with markers. I want to replicate a feature that exists in Kendo UI line charts, where:

  • Clicking on a legend item toggles (hides/shows) the corresponding series in the chart.

This is especially helpful when multiple lines are present, and users want to focus on specific data. Here’s an example screenshot of the chart I’m working with:

My questions:

  1. Does Telerik Reporting support interactive legend click behavior similar to Kendo UI Charts?

  2. If not directly supported, is there any workaround that can help achieve this functionality?

 

Regards,
Prabesh Shrestha

 

 

Prabesh
Top achievements
Rank 1
Iron
Iron
 updated answer on 20 May 2025
Narrow your results
Selected tags
Tags
+? more
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?