Unplanned
Last Updated: 22 Apr 2024 10:21 by Quentin
Created by: Quentin
Comments: 0
Category: Upload
Type: Feature Request
2

When the Upload has Initial Files, the RemoveUrl endpoint is not called when the user removes them from the UI. 

 

ADMIN EDIT

.razor file

@inject HttpClient HttpClient

.....

    private async Task OnUploadRemove(UploadEventArgs args)
    {
        args.RequestData.Add("category", "ships"); // for example, user name
        args.RequestData.Add("id", shipId);

        if (args.Files.First().Status == UploadFileStatus.Blank)
        {
            var multipartContent = new MultipartFormDataContent();
            multipartContent.Add(new StringContent(args.Files.First().Name), "files");
            multipartContent.Add(new StringContent("ships"), "category");
            multipartContent.Add(new StringContent(shipId.ToString()), "id");
            await HttpClient.PostAsync(RemoveUrl, multipartContent);
        }
    }

Program.cs

builder.Services.AddHttpClient();

 

Unplanned
Last Updated: 18 Apr 2024 11:31 by Lee
Created by: Lee
Comments: 0
Category: Calendar
Type: Feature Request
1
I want to be able to intercept the selection and cancel it programmatically. 
Pending Review
Last Updated: 17 Apr 2024 21:10 by Scott
Created by: Scott
Comments: 0
Category: PDFViewer
Type: Feature Request
0

Hello, I like the Telerik PDF Viewer for Blazor, but it's not supporting Table of Contents (TOC) links.  I would like to request this feature so that there are links in the TOC automatically.  I'm using Blazor WebAssembly.

Thank you for considering my request.

Unplanned
Last Updated: 15 Apr 2024 13:40 by Paul

When the user navigates between the views, the DatePicker currently fires a ViewChanged event. This event provides the new view (Decade, Month etc.) but there is no way to detect the selection that the user made in the previous view.

For example, if am in the Decate view, as soon as I select a year, the DatePicker will switch to Month view. The problem that I am facing is that I cannot get the year selected from the Decade view. I need that, so I can display it in my custom HeaderTemplate.

Unplanned
Last Updated: 22 Apr 2024 12:16 by Cirrus
Created by: Cirrus
Comments: 1
Category: UI for Blazor
Type: Feature Request
1

On Blazor Filter, please consider option to drag and drop rules to re-order the rules. It's a common user request that when creating complex rules that user has ability to move rules around without having to delete and create again. User loses information and data when rules are deleted and can be difficult to relocate in long drop downs.

Ability to drag and drop move of existing rules would improve user experience. Any change to GUI should also reflect in updated FilterDescriptor.

===

ADMIN EDIT

===

The order of the filter rules in one group does not make a difference for the FilterDescriptor. Thus, the current request applies to dragging filter rules from one group to another.

Unplanned
Last Updated: 22 Apr 2024 07:56 by ADMIN
Created by: Cirrus
Comments: 1
Category: UI for Blazor
Type: Feature Request
1

On Blazor filter field parameters, please consider adding

1/ Group options, eg using demo sample fields drop down looks like this

Id
Quantity
Freight
Country
Ship to
Ship Address

but it would be useful to allow groping fields by common categories?

Group-1
-Id
-Quantity
-Freight
Group-2
-Country
-Ship to
-Ship Address

2/ Related, can you also add sort index for group and fields so they can be sorted by index rather than field name. Sometimes groups and fields require different order that is not always alphanumerical and may change order based on other selections.

3/ Maybe consider feature parity with filter field options here querybuilder

Unplanned
Last Updated: 12 Apr 2024 12:26 by Chris
Created by: Chris
Comments: 0
Category: TabStrip
Type: Feature Request
1

One can generally loop through a collection of items to create several TabStrip instances as shown in the Tabs Collection article.

However, when I am dynamically adding or removing tabs I am hitting a variety of problems targeting:

  • The active tab is not correctly set;
  • The focus is not always set on the active tab;
  • Upon adding/removing a tab, all tabs are re-created and thus their content cannot be persisted;

Please add support for dynamic tabs.

Unplanned
Last Updated: 12 Apr 2024 10:37 by Ehsan
Created by: Ehsan
Comments: 0
Category: UI for Blazor
Type: Feature Request
1
Add support for the Hijri (Islamic) calendar for all date components (DateInput, DatePicker, DateTimePicker, DateRangePicker, Calendar). 
Unplanned
Last Updated: 11 Apr 2024 06:48 by matt
Created by: matt
Comments: 0
Category: PanelBar
Type: Feature Request
1
Currently, the PanelBar does not have a concept for selection. When I click on an item, it looks like "selected" due to the background but there is no way I can save that selection or set it programmatically if I need to retrieve the selected state at some point.
Unplanned
Last Updated: 11 Apr 2024 13:23 by Stefan

I want to compare special characters (such as umlauts) to other user input.

Completed
Last Updated: 17 Apr 2024 12:31 by ADMIN
Created by: Garrick
Comments: 1
Category: Editor
Type: Feature Request
0

It would be nice to have an ability to group CustomTool / icons much like we can do EditorButtonGroup(s) - e.g.

new CustomToolGroup (new CustomTool("Save"),  new CustomTool("Import"), new CustomTool("Export"))

 

 

Need More Info
Last Updated: 17 Apr 2024 09:22 by Adam

Horizontal scrolling in the grid works when its width is set to a fixed value (px, rem, etc.). But the h scroll disappear when a percentage is assigned to the width of the grid.

This seems to be a known 'feature' to Telerik:

https://docs.telerik.com/blazor-ui/components/grid/columns/width?_gl=1*78gyue*_ga*MzUzNTU3NTM0LjE2ODU2MTc3Njk.*_ga_9JSNBCSF54*MTcxMjIyMTAxNS44My4xLjE3MTIyMjExMzQuOS4wLjA.*_gcl_au*MTA3OTA1NzUyOS4xNzEwNTE1Njgy&_ga=2.263164300.1038437897.1712221016-353557534.1685617769

A sensible behaviour is to have the horizontal scrolling enabled and at the same time being able to set the grid to percentage width.

Unplanned
Last Updated: 02 Apr 2024 13:28 by Chase
I have a TelerikGrid that contains many columns and a DetailTemplate within it. The Grid has functionality for multiselect with a checkbox column that appears as the first column on the grid. Is it possible to move this checkbox column in front of the detail template '+' dropdown row?
Completed
Last Updated: 03 Apr 2024 08:38 by ADMIN

Hi,

I haven't been able to find this as a request or as a topic of discussion (If it iss feel free to point me to it and close this request) but I feel the Grouping feature is limiting. If I use the group field in say the DropDownList the grouping works fine but it orders it alphabetically.

I propose adding a number of features to enhance this. The first being a GroupAscending or GroupDescending tag. Takes a boolean value and allows you to change the order to ascending (default/True) or descending (False).

The second, and more complicated feature upgrade could be a GroupOrder tag. This would take a List of the group field names ordered in the way you require and apply that order to the grouping in the DropDownList. for instance if you had the list ordered as Category 1, Category 3, Category 2 it would display the items in each grouping in that order top to bottom.

Regards,

Luke

Under Review
Last Updated: 03 Apr 2024 07:31 by ADMIN
Created by: Steve
Comments: 0
Category: UI for Blazor
Type: Feature Request
0
https://docs.telerik.com/devtools/winforms/controls/map/how-to/adding-pins-and-drawing-regions

Can a feature like this capability in the Winforms Radmap be added?
Unplanned
Last Updated: 01 Apr 2024 13:23 by Garrick
Created by: Garrick
Comments: 0
Category: Editor
Type: Feature Request
1
I need a way to distinguish a "Drag and Drop" operation from regular editing (including text copy/paste) in the Editor. Currently, ValueChanged fires for every change and there is no way to know whether the user typed something or dropped some content in the editable area.
Under Review
Last Updated: 03 Apr 2024 14:21 by ADMIN
Created by: Anthony
Comments: 1
Category: UI for Blazor
Type: Feature Request
0

I know smart components are still in preview but please make this available as soon as you can in the editor component.  This would be a HUGE deal!

 

Github link

Smart Components

Duplicated
Last Updated: 27 Mar 2024 21:13 by Alfonso
Created by: Alfonso
Comments: 1
Category: UI for Blazor
Type: Feature Request
1

Need feature parity in the Blazor rich text editor similar to the Angular rich text editor.  Need access to add custom schema elements and tag highlighted text with those new schema elements.

https://www.telerik.com/kendo-angular-ui/components/editor/schema/

currently am able to do this with custom Marks in the angular version.

Unplanned
Last Updated: 10 Apr 2024 12:10 by ADMIN

I would like to be able to specify the week starting day when setting up the Telerik Calendar component.

Such as:


<TelerikCalendar FirstDayOfWeek=@DayOfWeek.Tuesday>
</TelerikCalendar>

Unplanned
Last Updated: 27 Mar 2024 13:42 by Chance Robertson
Created by: Chance Robertson
Comments: 0
Category: Charts
Type: Feature Request
1
I would like to use an event that fires when the user clicks on a Marker in the chart. I would like to get information on the clicked Marker so that I can customize its configuration settings, such as Color, Size, and other. 
1 2 3 4 5 6