Telerik Forums
UI for Blazor Forum
1 answer
15 views

I've tried the following:

HTML ...

  

CSS

.k-dialog .k-dialog-content {
    white-space: pre-line;
}

Unicode

\u00A0

bool isConfirmed = await Dialogs.ConfirmAsync($"  Are you sure you want to delete {item.RepairType} rate of {item.NextStandardRate}?  ", "Confirmation");

Doesn't matter what I do, any spaces before or after get removed from the string passed in to the Dialog:

This IS ugly and I can figure out how to get some padding or margin.

Thoughts?

Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
 answered on 03 Jun 2026
0 answers
19 views

I like the HighlightedCells property on Grids. Is it possible to specify a style option for each item in the list?  I would much prefer this over the OnCellRender event.

Then I would be able to specify that GridHighlightCellDescriptors with ColumnField of X should be Red, and ColumnFields of Y should be Blue.

Jerome
Top achievements
Rank 1
 asked on 02 Jun 2026
0 answers
8 views
Are there any plans to include persistence for the Pivot Grid?
Carl
Top achievements
Rank 1
 asked on 02 Jun 2026
1 answer
27 views

Telerik release notes are pretty generic with little or no detail references especially to "breaking changes".

Release History

For example:

No links to an example of code with "Before" and "After" needed to adjust for the Breaking Changes. 

So what is "smartbox mode" ... no link to what this feature is and how it would be used.

On "New" features there is no link/reference to where these "New" feature was requested nor number of requests.  Some sort of direct link showing who wanted the feature and why.

And we're still missing a lot of basic features like a Print option for Scheduler that will format/size the Schedule automatically to the output ... we're still using JS work-arounds.

Still no documentation on various CSS for on controls so we can quickly identify and adjust as needed ... avoid having to do painful browser developer mode hunting for what we need and setting pause of control states to discover etc.

Still no easy adjustments to visuals of DialogFactory.

Still issues with leaving a grid cell and clicking on a button outside the grid and losing data entered because the user didn't hit the Enter key.

I know I've said this before, but it's disappointing and does make one wonder if Telerik think Blazor is going to have a short life cycle hence isn't getting much development attention.  I get that Microsoft have burned us all in the past (Silverlight for example) but MS do seem committed to Blazor this time around as they continue to add more and more .NET support for it and it will replace ASPX.

Telerik support is top notch (you folks excel here), but there seems to be lack of product direction and frankly feedback process seems entirely useless.

Rob.

Dimo
Telerik team
 answered on 29 May 2026
1 answer
17 views

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

 

__PRESENT
Ivan Danchev
Telerik team
 answered on 18 May 2026
0 answers
20 views

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"

https://feedback.telerik.com/blazor/1596459-the-opened-lists-do-not-close-in-safari-when-clicking-the-open-close-button

Aleksey
Top achievements
Rank 1
 asked on 18 May 2026
0 answers
29 views

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"

https://feedback.telerik.com/blazor/1596459-the-opened-lists-do-not-close-in-safari-when-clicking-the-open-close-button

 

Aleksey
Top achievements
Rank 1
 asked on 13 May 2026
2 answers
47 views

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.

  • I have copied the TelerikMessages files (both the resx and the es-ES.resx) from C:\Program Files (x86)\Telerik\Telerik UI for Blazor 6.2.0\messages into my Properties folder and set them as EmbeddedResource.
  • I have implemented an ITelerikStringLocalizer class as follows:
public class TelerikLocalizer : ITelerikStringLocalizer
{
    public string this[string key] => TelerikMessages.ResourceManager.GetString(key, TelerikMessages.Culture) ?? key;
}
  • I have registered it using the following code:
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

 

Román
Top achievements
Rank 1
Iron
 answered on 13 May 2026
6 answers
2.5K+ views

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);
            });

Lance | Senior Manager Technical Support
Telerik team
 updated answer on 11 May 2026
1 answer
35 views

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.

Tsvetomir
Telerik team
 answered on 07 May 2026
Narrow your results
Selected tags
Tags
+? more
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?