Telerik Forums
UI for Blazor Forum
1 answer
17 views

I have a simple grid with a list object, where one property is a date and the other a string. The grid is sorted on dates. I want to insert a custom <tr> row before the "normal" row if the month changes, containing a single <td> cell with the year and month.

I've looked at the <RowTemplate> but if I try to insert a <tr> in there, the whole table is broken because the rowtemplate should not (as I understand it) not contain a tr but only td cells.

Anyone?

Dimo
Telerik team
 answered on 09 Feb 2026
2 answers
55 views
Hello

My project has a dependency of version 6.2.0 for Telerik.Ui.for.Blazor and my project wont compile without this specific version

Is there a Telerik location available where I can download 6.2.0 nuget package and the related dependencies.

I have attached a screenshot of the error

Many Thanks in advance

Dimo
Telerik team
 answered on 04 Feb 2026
1 answer
77 views

https://blazorrepl.telerik.com/cKuvmXwu53TrfnCx19

During the initial execution, the code behaves as expected, but after invoking setState, the FloatingTopChanged and FloatingLeftChanged events stop firing. Removing the DockPaneDemo item from localStorage and reloading the page restores the expected event behavior.

sample project attached.

Ivan Danchev
Telerik team
 answered on 03 Feb 2026
1 answer
39 views
Where is the latest Telerik for Blazor Accessibility Conformance Report? The one on this page is over two years old: https://www.telerik.com/blazor-ui/documentation/accessibility/compliance#accessibility-conformance-report

Most organizations follow a 12-month cycle or update their ACR whenever there's a significant product version change, whichever comes first, to remain in good standing.

Please update the latest Telerik for Blazor Accessibility Conformance Report for the current version of Telerik for Blazor. We need these reports for the US States that use our software and Telerik for Blazor. Without current, valid VPATs, we will have to discontinue use of Telerik for Blazor.

DevExpress for Blazor has a current VPAT here for example (latest report Dec, 2025): https://www.devexpress.com/products/net/accessibility/ACR-DevExpress-Blazor-25.2.pdf
Hristian Stefanov
Telerik team
 answered on 03 Feb 2026
1 answer
34 views

I don't really want to sort by row or column title, but actually have the data sorted by the value (the measure). So to click the column header and have all rows in the order of the row values for the selected column. For multiple row dimensions, the sorting would first have to apply to the highest dimension (S, W, W/AT) and than further down the nested dimensions.

A code behind solution would be fine as well.

 

 

 

Dimo
Telerik team
 answered on 03 Feb 2026
1 answer
17 views
Can I place a hyperlink in a Diagram rectangle? The JSON is being pulled from a SQL SERVER DB. I can embed an image and text, but cannot figure out how to make either the image or text a clickable hyperlink
Dimo
Telerik team
 answered on 03 Feb 2026
0 answers
18 views
I am using TelerikDatePicker in a Blazor component with a nullable DateTime bound value.
When a user manually enters an invalid date in the input field and then clicks a Clear/Reset button, the bound value is set to null, but the DatePicker UI does not clear the invalid text.

The expected behavior is that the DatePicker input should be cleared when the value is set to null, regardless of whether the user previously entered an invalid date.

Code Sample:

<div class="k-form-field">
    <label for="dosFrom">@Label From</label>
    <TelerikDatePicker
        Id="@($"{Id}-dosFrom")"
        @bind-Value="@DateTesting"
        Format="MM/dd/yyyy"
        Class="@($"{Id}-dosFrom calender-picker")">
        <DatePickerFormatPlaceholder Year="YYYY" Month="MM" Day="DD" />
    </TelerikDatePicker>
</div>

{{ @DateTesting }}

<TelerikButton
    ButtonType="Telerik.Blazor.ButtonType.Reset"
    OnClick="() => ClearDate()">
    Clear
</TelerikButton>


public DateTime? DateTesting { get; set; }

private void ClearDate()
{
    DateTesting = null;
}
Steps to Reproduce:

Focus on the DatePicker input.

Manually enter an invalid date (e.g., 9999 or only 09 for dd or only 10 for mm or random text).

Click the Clear button.

Observe that DateTesting becomes null, but the DatePicker input still shows the invalid value.

Expected Result:

The DatePicker input should be visually cleared when the bound value is set to null.

Actual Result:

The invalid text remains in the DatePicker input even though the bound value is null.

Question:

1. Is this expected behavior for TelerikDatePicker?
2. Is there a recommended way to force the DatePicker to clear the input when invalid user input exists?
3. Should ValueChanged, OnChange, or a component reference be used to handle this scenario?

Any guidance or best practice would be appreciated.
Arjun
Top achievements
Rank 1
Iron
 asked on 02 Feb 2026
2 answers
158 views

For my numeric text box, the up/down arrows do not work in a form.  I did a copy/paste from your example here:

https://www.telerik.com/blazor-ui/documentation/components/numerictextbox/overview



<TelerikForm Model="@Account"
             OnValidSubmit="@OnSave"
             OnInvalidSubmit="@OnInvalidSubmit"
             Class="gsi-margin-10">

    <FormValidation>
        <DataAnnotationsValidator />
    </FormValidation>

    <FormItems>

... <FormItem Field="@nameof(Account.theValue)"> <Template> <LabelFor Model="@Account" DisplayName="Text Value" /> <TelerikNumericTextBox @bind-Value="@Account.theValue" Format="C" Max="5m" Min="-5m" Step="0.33m" /> </Template> </FormItem> </FormItems>

        [NotMapped]
        public decimal theValue { get; set; } = 1.234m;

Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
 answered on 29 Jan 2026
1 answer
23 views
I would like to hide the close button on the Grid Edit Popup window? How can I do that.

If it is not possible to hide the close button, is there an OnClose event I can capture.
Hristian Stefanov
Telerik team
 answered on 21 Jan 2026
0 answers
32 views
Why won't my numeric text box bind?


<TelerikWindow Visible="@ShowEditPopup"
               Modal="true"
               Draggable="true"
               Resizable="false"
               MaxWidth="350px">

    <WindowTitle>Edit Method</WindowTitle>
    <WindowContent>
        <div>
            <label>Description:</label>
            <TelerikTextBox @bind-Value="@EditingMethod.Description" />
        </div>
        <div>
            <label>Is Run:</label>
            <TelerikCheckBox @bind-Value="@EditingMethod.IsRun" />
        </div>
        <div>
            <label>Run Frequency Minutes:</label><br />
            <small>4 Hours: 240, 12 Hours: 720, 24 Hours: 1440</small>
            <TelerikNumericTextBox @bind-Value="@EditingMethod.RunFrequencyMinutes"
                                   Min="5"
                                   Max="1440"
                                   Step="5"
                                   Decimals="0" />
        </div>
        <div>
            <TelerikButton OnClick="OnSavePopup">Save</TelerikButton>
            <TelerikButton OnClick="OnCancelPopup">Cancel</TelerikButton>
        </div>
    </WindowContent>
</TelerikWindow>

Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
 asked on 20 Jan 2026
Narrow your results
Selected tags
Tags
+? more
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
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?