I would like to request the possibility to highlight or hide non-business days in the GANTT component for Blazor:
Currently there is no way to show Saturdays and Sundays columns in a different color or hide them.
thanks,
Matteo

I have "Telerik UI for Blazor 13.3.0" on Safari 26.0
Attached video from your online ComboBox - Virtualization
This is can be fixed by "Clicking outside the component can mitigate the problem"
This bug already was fixed in the "UI for Blazor 5.0.0" ("ComboBox dropdown will not open or close in Safari")
https://www.telerik.com/support/whats-new/blazor-ui/release-history/ui-for-blazor-5-0-0
I have "Telerik UI for Blazor 13.3.0" on Safari 26.0 and 26.5
This is can be fixed by "Clicking outside the component can mitigate the problem"
Hello,
I'm using Telerik.UI.for.Blazor version 7.1.0 and I'm trying to automatically translate the telerik components (specifically, a TelerikTreeList but there wil be more) following the tutorial on https://www.telerik.com/blazor-ui/documentation/globalization/localization but they are not being translated.
public class TelerikLocalizer : ITelerikStringLocalizer
{
public string this[string key] => TelerikMessages.ResourceManager.GetString(key, TelerikMessages.Culture) ?? key;
}services.AddSingleton<ITelerikStringLocalizer, TelerikLocalizer>();
services.AddLocalization(options => options.ResourcesPath = "Properties");
services.AddTelerikBlazor();Finally, in my App.razor.cs class, I have set the default culture to spanish as follows:
var newCulture = new CultureInfo("es-ES")
{
DateTimeFormat =
{
ShortDatePattern = DateTimeFormatter.ShortDateFormat,
ShortTimePattern = DateTimeFormatter.HourFormat
}
};
CultureInfo.DefaultThreadCurrentCulture = newCulture;
CultureInfo.DefaultThreadCurrentUICulture = newCulture;
Thread.CurrentThread.CurrentCulture = newCulture;
Thread.CurrentThread.CurrentUICulture = newCulture;However, when I go to the TelerikTreeList, the tooltip of pages and the number of items are still in english, as you can see in the attached image. What am I doing wrong?
Thank you for your support.
Román
My project is a windows service that hosts a blazor web site and api. When deployed using an MSI, Telerik says it is not licensed. What must be done with the license file to ensure it is registered?
int portNumber =
builder.Configuration.GetValue<int>(
"Kestrel:Startup:Port");
builder.Host.UseWindowsService();
builder.WebHost.UseKestrel(options =>
{
options.Listen(IPAddress.Loopback, portNumber);
});
Following your previous help on the resource column width issue, I have a similar question about row height in the timeline view.
I would like to reduce the height of the resource rows to display more resources on screen.
When I try to reduce the row height using CSS on .k-scheduler-row (e.g. min-height: 20px ), the rows do get smaller but the appointments become misaligned — their vertical position is calculated based on the original row height, not the new one.
I saw this was a requested feature but I didn't find updates on the forum.
Is there a way to achieve this ?
Thank you in advance for your answer.
Hi,
I am building a fleet management planning application using the Telerik Blazor Scheduler with around 400 vehicle resources.
Context: I use the Timeline view with vertical grouping and it works perfectly. I also need a Day view, but vertical grouping in Day view is not an option for me — it generates 24 time slots per resource, which makes the page extremely heavy and causes it to crash with 400 resources. So I am using horizontal grouping for the Day view instead.
The problem: With horizontal grouping in Day view and many resources, the resource label columns are very small and the text becomes unreadable. After inspecting the generated HTML, I noticed an "overflox: hidden" rule on the resource label cells that seems to be constraining their width to the minimum available space rather than fitting the content.
I tried removing this CSS rule which makes the text readable, but it breaks the alignment between the resource labels and the scheduler body slots.
My questions:
Thank you in advance.

Hy,
In my web app in blazor .net 10 I use the TelerikQRCode component in one page set as follows:
The encoding is set to UTF-8 because the value contains special characters (such as emojis).
It seems that the component automatically adds some initial BOM bytes to the value, which is passed in a 'clean' way, i.e. without these initial bytes,
This creates a problem for me when I read the data with the scanner reader: I have no problems with the Honeywell scanner, but with the Datalogic scanner, when I read the automatically generated QR code, the string contains the following characters at the beginning: 
Is there a way to fix this issue directly with the Telerik component, without having to modify the configuration of all the Datalogic scanners?
Thanks,
Marco

Hi,
I am building a fleet management planning application using the Telerik Blazor Gantt component. I would like to display a vertical line or marker on the timeline to indicate today's date, similar to a "current time indicator" that visually separates past and future tasks.
I can't seem to find a feature like this in the documentation ? If not, is there a recommended workaround to achieve this ?
Thank you in advance for your help.
