Unplanned
Last Updated: 08 Aug 2025 14:26 by Nick
Created by: Christopher
Comments: 2
Category: Charts
Type: Feature Request
7
Please add Funnel chart type such as the one available in Kendo.
Need More Info
Last Updated: 07 Aug 2025 10:02 by ADMIN
So i thought that 
gettting the state x
gridref.rebind()
setting new state x

would re-expand the row automatically - didnt work


added Equal and GetHashCode- still dont work


Unplanned
Last Updated: 07 Aug 2025 08:33 by David
When you remove the last tab from the DockManager's TabStrip, the entire active tab selection is cleared.
Completed
Last Updated: 07 Aug 2025 06:59 by ADMIN
Release 2025 Q3 (Aug)

Hello I want to close a TelerikDialog using Esc key and this does not work sometimes. Run this REPL snippet please https://blazorrepl.telerik.com/cnYrwUYq54FZ70xP17. Click into dialog title for instance and press Esc key. Nothing happens.

Very thanks.

Miroslav

  
Unplanned
Last Updated: 06 Aug 2025 13:06 by Michael
If you set a given column's Groupable/Sortable/Filterable parameter to false, it will still appear in the toolbar tools list of columns.
Completed
Last Updated: 06 Aug 2025 09:59 by ADMIN
Created by: Mark
Comments: 2
Category: PDFViewer
Type: Feature Request
10
When displaying a PDF using the PDFViewer component, I have noticed that, if the PDF being displayed has any website links/hyperlinks in it, the links cannot be clicked. If I download the PDF from the component and open the file, I am able to click the links. Can you add this functionality?
Completed
Last Updated: 05 Aug 2025 14:19 by ADMIN
Release 2025 Q3 (Aug)
Created by: Richard
Comments: 0
Category: DatePicker
Type: Bug Report
4
Set a Placeholder to the DatePicker. As a result, you will not be able to select the current day from the calendar.
Completed
Last Updated: 05 Aug 2025 14:08 by ADMIN
Release 7.0.0
Created by: Martin Herløv
Comments: 1
Category: DateTimePicker
Type: Bug Report
3

DateTimePicker loses focus when the NOW button is clicked. 

To reproduce the problem open the following demo:

https://demos.telerik.com/blazor-ui/datetimepicker/overview

Try clicking a few times on the NOW button. The focus is occasionally lost. 

https://www.screencast.com/t/BPEXTy43

 

 

 

 

 

Completed
Last Updated: 05 Aug 2025 10:11 by ADMIN
Release 2025 Q3 (Aug)
Currently, users can cancel editing either by clicking the "Cancel" button, the `X` button in the popup header, or by pressing the Esc key. The expectation is that all three actions should trigger the `OnCancel` event.
Unplanned
Last Updated: 04 Aug 2025 14:55 by Sean
Created by: Alexander
Comments: 4
Category: Window
Type: Feature Request
4
If the last element in the window has tabindex="-1" or the last element is hidden using "display: none", the focus is no longer trapped inside the window and can go to elements outside of it.
Unplanned
Last Updated: 04 Aug 2025 12:18 by Davide
Created by: Davide
Comments: 0
Category: DockManager
Type: Feature Request
6

After pinning an element, it goes to the side toolbar. I would like that if clicking on the name of elements in the toolbar pins them to the original position.

Completed
Last Updated: 01 Aug 2025 12:14 by ADMIN
Release 2025 Q3 (Aug)

Any transitioned event from a child element, like a radio button or button with a CSS transition, bubbles up to the TelerikWindow, triggers StateHasChanged on the window, which causes a re-render and leads to OnParametersSet being called.

Reproduction example: https://blazorrepl.telerik.com/wzEhnvOL011iIhls25.
To reproduce the issue:

  1. Open the Window
  2. Hover the Submit button or...
  3. Hover the arrow buttons of the NumericTextBox or..
  4. Select a new RadioGroup value

The NumericTextBox value is the OnParameterSet counter.

Planned
Last Updated: 01 Aug 2025 10:36 by ADMIN
Scheduled for 2025 Q3 (Aug)
Created by: Jerome
Comments: 1
Category: DockManager
Type: Bug Report
1
When I click and drag content 2 out of the dock, the header gets cleared out.  Panes using the HeaderText property stay put.
    <TelerikDockManager Height="100vh" OnStateChanged="OnStateChanged" OnStateInit="OnStateInit" @ref="dockManager">
        <DockManagerPanes>
            <DockManagerSplitPane>
                <Panes>
                    <DockManagerContentPane Closeable="false" Maximizable="true" HeaderText="Content1 header" @bind-Size="Content1PaneSize">
                        <Content>
                            <div>
                                yada yada 
                            </div>
                        </Content>
                    </DockManagerContentPane>
                    <DockManagerSplitPane Orientation="DockManagerPaneOrientation.Vertical">
                        <Panes>
                            <DockManagerContentPane Maximizable="false" Closeable="false" @bind-Size="Content2PaneSize">
                                <HeaderTemplate>
                                    <span>content 2 header gets erased</span>
                                </HeaderTemplate>
                                <Content>
                                    <div>
                                        Content 2
                                    </div>
                                </Content>
                            </DockManagerContentPane>
                            <DockManagerContentPane HeaderText="header 3" Closeable="false" @bind-Size="Content3PaneSize">
                                <Content>
                                    <div>
                                        content 3
                                    </div>
                                </Content>
                            </DockManagerContentPane>
                        </Panes>
                    </DockManagerSplitPane>
                </Panes>
            </DockManagerSplitPane>
        </DockManagerPanes>
    </TelerikDockManager>

Declined
Last Updated: 30 Jul 2025 13:08 by dev

Hello,

I am experiencing a crash when trying to remove a FilterField from a TelerikFilter component when using it inside a TelerikDialog. From what I understand, the documentation for the TelerikFilter is out of date ('TelerikFilter.ValueChanged' is obsolete: 'Use OnUpdate instead.') so I did my best trying to put the piece together.

The TelerikFilter code is based on the updated Telerik sample provided here: 'TelerikFilter.ValueChanged' is obsolete: 'Use OnUpdate instead.' but updated based on the documentation for "Filter in a Dialog" provided here: Blazor Dialog Integration - Telerik UI for Blazor

Here is my code:

 <TelerikDialog @ref="@DialogRef" Visible="@ShowDialog" Width="600px" Title="My Dialog" VisibleChanged="@WindowVisibilityChangeHandler">
     <DialogContent>
         <TelerikFilter Value="@Value" OnUpdate="@((value) => OnFilterUpdate(value))">
             <FilterFields>
                 <FilterField Name="@(nameof(Person.EmployeeId))" Type="@(typeof(int))" Label="Id"></FilterField>
                 <FilterField Name="@(nameof(Person.Name))" Type="@(typeof(string))" Label="First Name"></FilterField>
                 <FilterField Name="@(nameof(Person.AgeInYears))" Type="@(typeof(int))" Label="Age"></FilterField>
             </FilterFields>
         </TelerikFilter>
   </DialogContent>
   <DialogButtons>
    <TelerikButton OnClick="@(() => ResetDialogState())">Cancel</TelerikButton>
    <TelerikButton ThemeColor="@(ThemeConstants.Button.ThemeColor.Primary)" OnClick="@(() => PrimaryAction())">Confirm</TelerikButton>
</DialogButtons>
</TelerikDialog>


@code {
private CompositeFilterDescriptor Value { get; set; } = new CompositeFilterDescriptor();

private void OnFilterUpdate(object filter)
{
    if (filter is null)
    {
        return;
    }
    Value = (CompositeFilterDescriptor)filter;
    DialogRef.Refresh();
}

public class Person
{
    public int EmployeeId { get; set; }
    public string Name { get; set; } = string.Empty;
    public int AgeInYears { get; set; }
}
}


The TelerikFilter renders fine and I can add Filters by clicking the "Add Expression" button. However, when I try to remove a filter that was added, I click on the X button on the right. The first time, nothing happens. When I click a second time, I get this error:

 Unhandled exception rendering component: Index was out of range. Must be non-negative and less than the size of the collection. (Parameter 'index')
      System.ArgumentOutOfRangeException: Index was out of range. Must be non-negative and less than the size of the collection. (Parameter 'index')
         at System.Collections.ObjectModel.Collection`1.RemoveAt(Int32 index)
         at Telerik.Blazor.Components.Filter.FilterGroup.OnFilterRemove(Int32 index, String removedFilterId)
         at Microsoft.AspNetCore.Components.ComponentBase.CallStateHasChangedOnAsyncCompletion(Task task)
         at Microsoft.AspNetCore.Components.RenderTree.Renderer.GetErrorHandledTask(Task taskToHandle, ComponentState owningComponentState)

I also have attached a video of the issue to this ticket.

Is this a bug? If not, can you point me in the right direction?
Thanks,

Mathieu

Unplanned
Last Updated: 30 Jul 2025 11:59 by Tiago
I think that the aria with the wrong value is aria-controls because the ID does not exist at that render time. Because the popup with that ID is only rendered when the dropdown is open.
Unplanned
Last Updated: 30 Jul 2025 07:58 by Stephan
I want to expand a specific section within the column menu, such as the filter, column chooser, or column position section, when the menu is opened. 
Declined
Last Updated: 30 Jul 2025 07:39 by ADMIN
Created by: Marco
Comments: 1
Category: Grid
Type: Feature Request
1

Hy,

It is possible to have default color themes (Primary,Dark,Info,Error,...) for Telerik Blazor Grid component as well without having to change the color by css overriding?

Unplanned
Last Updated: 29 Jul 2025 06:17 by ADMIN
Created by: Toni
Comments: 11
Category: Grid
Type: Feature Request
22
Hi, How can i store and retrieve the PageSize of a Grid in the GridState? It seems that this is missing in GridState?
Unplanned
Last Updated: 28 Jul 2025 16:11 by David Klein
How can I implement auto-scrolling in the Telerik Scheduler when dragging an appointment outside the visible viewport? I want the scheduler to automatically scroll in the appropriate direction to bring the dragged appointment into view.
Completed
Last Updated: 28 Jul 2025 10:42 by ADMIN
An error occurred while running the wizard.

Error executing custom action Telerik.Blazor.VSX.Actions.UpdateMasterPageAction: System.Collections.Generic.KeyNotFoundException: The given key was not present in the dictionary.
   at System.ThrowHelper.ThrowKeyNotFoundException()
   at System.Collections.Generic.Dictionary`2.get_Item(TKey key)
   at Telerik.Blazor.VSX.Actions.UpdateMasterPageAction.RetrieveMasterPageSettingsUpgradeInfo(IPropertyDataDictionary arguments, IProjectWrap project)
   at Telerik.Blazor.VSX.Actions.UpdateMasterPageAction.Execute(WizardContext wizardContext, IPropertyDataDictionary arguments, IProjectWrap projectWrap)
   at Telerik.VSX.WizardEngine.ActionManager.ExecActions()
1 2 3 4 5 6