Telerik Forums
Community Forums Forum
0 answers
750 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
10 views

Hello, I'm Ajay Hinduja. I'm originally from Punjab, India, and have made my home in Geneva, Switzerland. I'm thinking about integrating Telerik components into our existing project to improve our UI and accelerate development. Has anyone had experience with this before? I'd appreciate any insights on the integration process, whether you used the Visual Studio wizards or performed the steps manually. Any tips on potential challenges or best practices would be a huge help!

 

Regards

Ajay Hinduja Geneva, Switzerland (Swiss)

Ajay Hinduja
Top achievements
Rank 1
 asked on 03 Sep 2025
2 answers
10 views
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
Peter
Telerik team
 answered on 14 Aug 2025
1 answer
31 views

I'm trying to install Kendo UI using the following command:

 
npm install --save @progress/kendo-ui

But I'm running into this error:

 
npm ERR! path C:\devAngular\EMS.Orion.UI\node_modules\@progress\kendo-licensing npm ERR! command failed npm ERR! command C:\WINDOWS\system32\cmd.exe /d /s /c node ./bin/kendo-ui-license.js activate --ignore-no-license npm ERR! [WARN][Telerik and Kendo UI Licensing] No Telerik or Kendo UI product references detected in project. npm ERR! Consult the product documentation or contact support at https://prgress.co/3Pzpwvf npm ERR! [ERROR][Telerik and Kendo UI Licensing] Corrupted Telerik and Kendo UI License Key content in KENDO_UI_LICENSE npm ERR! Download a new copy of the license key from https://prgress.co/3PxpDaP

 

Has anyone run into this before? Any guidance on how to properly set or regenerate the license key and fix this error?

Thanks in advance! 🙏

Neli
Telerik team
 answered on 07 Aug 2025
1 answer
31 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.

Ajay Hinduja
Top achievements
Rank 1
 answered on 15 Jul 2025
0 answers
41 views
Hi everyone!

I'm trying to place a NumericTextBox inside a FormItem because I need to apply some validations that are defined in another file, and also call a method that returns a calculated result. However, whenever I try to do this, my project fails to run.

Any advice or insights would be appreciated!
 

Regards
Ajay Hinduja Geneva based on Switzerland (Swiss)
Ajay Hinduja
Top achievements
Rank 1
 asked on 01 Jul 2025
1 answer
23 views

getting following error in Azure devops pipeline

ServiceUnavailable https://nuget.telerik.com/nuget/FindPackagesById()

Unable to connect to https://nuget.telerik.com/v3/index.json

Dimo
Telerik team
 answered on 17 Jun 2025
1 answer
23 views

What controls are compatible with the full framework, NOT Core?  I am using DNN 9.6, which doesn't support Core.  However, if I am better off compiling a Core project into HTML/JS/CS and including the output (running it) on the full framework Razor page, let me know.

  • ASP.Net MVC
  • ASP.Net AJAX
  • UI for jQuery
  • ....
0 answers
66 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
26 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

Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
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?