Hi,
I was going to create a ticket but there's no option for website related issues so I am just posting it here for anyone that has spotted this before.
The pages for the Blazor UI have invalid re-directs when clicking on the documentation button.
Almost all documentation buttons on https://www.telerik.com/blazor-ui/ direct you to the invalid url
It adds "-ui" to /documentation/ so it's then /blazor-ui/documentation-ui/ which is invalid and should be /blazor-ui/documentation/
Example:
https://www.telerik.com/blazor-ui/datetimepicker
It directs you to:
https://www.telerik.com/blazor-ui/documentation-ui/components/datetimepicker/overview
It should direct you to:
https://www.telerik.com/blazor-ui/documentation/components/datetimepicker/overview
Grid view:
https://www.telerik.com/blazor-ui/filter
Documentation redirects to:
https://www.telerik.com/blazor-ui/documentation-ui/components/filter/overview
Thanks,
Luke
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)
I'm trying to install Kendo UI using the following command:
But I'm running into this error:
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! 🙏
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
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.
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
Hi Team,
I just got a email from g2.com, it said Telerik asked them to gather reviews.
email subject: "Review Progress Telerik, get a $25 Amazon gift card!"
how the g2 know who I am, my email, also know I bought Telerik Products.
didn't click any hyperlink within, but I really concern about the privacy.
I didn't remember any agreements with g2.
It's an officical activity, security incident or phishing ?
I'm looking forward to a official explaination.
Package 'Telerik.Reporting.OpenXmlRendering 19.0.25.313' from source 'https://nuget.telerik.com/v3/index.json': This package is signed but not by a trusted signer.
I am trying to create reports programmatically and when I copied the code from the links there are errors. I am getting the following errors:
'Report' does not contain a constructor that takes 0 arguments
'DetailSection' does not contain a constructor that takes 0 arguments
How can the examples be updated?
Report report = new Report();
string selectCommand = @"SELECT * FROM Sales.Store";
string connectionString = "Data Source=(local)\\SQLEXPRESS;Initial Catalog=AdventureWorks;Integrated Security=True";
Telerik.Reporting.SqlDataSource sqlDataSource = new Telerik.Reporting.SqlDataSource(connectionString, selectCommand);
report.DataSource = sqlDataSource;
DetailSection detail = new DetailSection();
this.detail.Height = new Telerik.Reporting.Drawing.Unit(3.0, Telerik.Reporting.Drawing.UnitType.Inch);
this.detail.Name = "detail";
report.Items.Add((ReportItemBase)detail);
Thank you.