Completed
Last Updated: 27 Oct 2021 08:47 by ADMIN
Release 2.28.0
Created by: Datafyer
Comments: 4
Category: UI for Blazor
Type: Feature Request
43

Sometimes it is helpful to allow the user to pick colors for various purposes.

This control can display the RGB value along with allowing them to change the hue/brightness along with the alpha component.

Also the ability to select from a set of predefined colors would be very nice.

---

ADMIN EDIT

Here is a sample project that showcases how you can use Kendo widgets in Blazor and also contains samples of color pickers: https://github.com/telerik/blazor-ui/tree/master/common/kendo-in-blazor

---

Completed
Last Updated: 15 Oct 2020 13:20 by ADMIN
Release 2.18.0
Created by: Devin
Comments: 12
Category: UI for Blazor
Type: Feature Request
39
Simply looking to have a masked input textbox similar to that of the other frameworks that you already support, but for Blazor. Didn't see a request for this nor a mention on the roadmap for Blazor.
Completed
Last Updated: 18 Mar 2020 11:30 by ADMIN
Release 2.9.0
Created by: Loren
Comments: 3
Category: UI for Blazor
Type: Feature Request
37
One of the controls i find myself using a lot it the Async Uploaders. Since this curently requires a far amount of JS to get working in Blazor i would love to see it added so i dont have to write and manage all the JS.
Completed
Last Updated: 10 Jun 2021 09:23 by ADMIN
Release 2.25.0
Created by: Graham
Comments: 6
Category: UI for Blazor
Type: Feature Request
36

I would like components like the TextBox, NumericTextBox, TextArea, Button to have a method in their reference similar to the FocusAsync() which Microsoft included to the ElementReference in .NET5.

---

ADMIN EDIT

For the time being, you can use JS interop and prepare a suitable selector. Here is a basic example for the button:

@inject IJSRuntime _js

Notes:<br />
- Move this script to a proper place, it is hacked into the component to make this snippet short
- Make sure the ID is unique if you use IDs. THere are other selectors you can use (such as classes, or you can even cascade your selectors to make them more specific)
<br /><br />

<script suppress-error="BL9992">
    function focusElement(selector) {
        var elem = document.querySelector(selector);
        if (elem && elem.focus) {
            setTimeout(function () {
                elem.focus();
            }, 30);
        }
    }
</script>

<TelerikButton OnClick="@FocusBtn">Focus the other button</TelerikButton>

<br /><br />

<TelerikButton Id="@btnId" OnClick="@SpecialBtnAction">I will be focused programmatically</TelerikButton>

@code{
    string btnId = "my-special-btn";

    async Task FocusBtn()
    {
        await _js.InvokeVoidAsync("focusElement", $"#{btnId}");
    }

    async Task SpecialBtnAction()
    {
        Console.WriteLine("special button clicked");
    }
}

---

Completed
Last Updated: 06 May 2021 15:20 by ADMIN
Release 2.24.0
Created by: Datafyer
Comments: 7
Category: UI for Blazor
Type: Feature Request
36

Having the ability to specify sections and then allowing the user to expand the section can be very helpful for complex content or menus.

The sections can be expanded so 1 is visible always or multiple can be expanded.

Completed
Last Updated: 12 Mar 2020 09:47 by ADMIN
Release 2.9.0
Created by: ben
Comments: 4
Category: UI for Blazor
Type: Feature Request
36

https://www.telerik.com/kendo-react-ui/components/tooltip/

Tooltip is another one of those controls we use everywhere, would like to see a Blazor implementation. 

Completed
Last Updated: 04 Aug 2020 12:01 by ADMIN
Release 2.16.0
Created by: Marcel
Comments: 4
Category: UI for Blazor
Type: Feature Request
35
Could you consider implementing a component for adding a "contextmenu" to any kind of markup/components. This is very important for more packed UIs and business applications.
Completed
Last Updated: 17 Apr 2024 14:11 by ADMIN
Release 2024 Q2 (May)
Created by: Grinden
Comments: 8
Category: UI for Blazor
Type: Feature Request
32
Like the Kendo UI one, please.
Completed
Last Updated: 25 Apr 2024 13:22 by ADMIN
Release 5.0.0 (15 Nov 2023) (R1 PI1)
Created by: James
Comments: 5
Category: UI for Blazor
Type: Feature Request
32
Please add an app bar component
Completed
Last Updated: 25 Mar 2022 20:22 by Kyler
Release 3.1.0
Created by: Michael McCallum
Comments: 5
Category: UI for Blazor
Type: Feature Request
31
Like the one in UI for ASP.NET AJAX and Kendo, as it is more powerful than the built-in filtering of the grid.
Completed
Last Updated: 11 May 2020 12:08 by ADMIN
Release 2.13.0

ADMIN EDIT: see the title and the discussion on how this would be handled, it is not going to be a separate property.

 

 

As in e.g. WPF/UWP, it would be convenient to get the "actual width" of a component in order to arrange other elements to follow the same width (or height).

Consider a TelerikDropDownList with Width="100%" and I want the PopupWidth to have same width (PopupWidth="100%" will not result in same).


                <TelerikDropDownList Width="100%" PopupWidth="@(Dropdown?.Width)" @ref="Dropdown" DefaultItem="@(new Country{Name ="Select..."})"  Data="@Countries" ValueField="Abbreviation" TextField="Name" PopupHeight="400px" @bind-Value="@Employee.ContactDetails.CountryCode"></TelerikDropDownList>


    public TelerikDropDownList<Country, string> Dropdown { get; set; }

Here, I would like to set PopupWidth as below, to avoid the result in attached image.

PopupWidth="@(Dropdown?.ActualWidth)

Completed
Last Updated: 11 Mar 2024 06:36 by ADMIN
Release 2024 Q2 (May)
Created by: Dennis
Comments: 6
Category: UI for Blazor
Type: Feature Request
29
Similar to the Bootstrap badges https://getbootstrap.com/docs/4.0/components/badge/
Completed
Last Updated: 08 Sep 2021 14:14 by ADMIN
Release 2.27.0
Created by: Gary
Comments: 0
Category: UI for Blazor
Type: Feature Request
29

Please add a "native" Carousel component for the Telerik UI for Blazor solution.

Currently, to implement a Carousel option in a Blazor application using Telerik components, you may need to leverage the Kendo UI widgets based on jQuery that rely on direct DOM manipulation. In a Blazor application, the software engineer should rely on Blazor to manipulate the DOM, instead of direct DOM manipulation required with tools such as jQuery.

Overlapping Telerik products in the same web application, such as Kendo UI and UI for Blazor, can create issues if releases are out of alignment between the solutions, use of CSS files, and other areas of complication.

Please consider adding a Carousel component as it offers a great experience for marketing to customers, business or consumer, on the home page of any website.

Completed
Last Updated: 11 Sep 2020 13:56 by ADMIN
Release 2.17.0
Created by: James
Comments: 19
Category: UI for Blazor
Type: Feature Request
29

Please add a dashboard layout component.

 

ADMIN EDIT: There seems to be demand for such a component/feature, so we have re-opened it to gather feedback on what is the expected functionality and use cases. You can Vote for this, Follow its progress, and leave a comment with your expectations/requests. You can also review the discussion for some technical limitations that prevent an implementation at the moment.

ADMIN EDIT 2: The component will be similar to this one: https://demos.telerik.com/kendo-ui/tilelayout/index

Completed
Last Updated: 26 Oct 2020 13:32 by ADMIN
Release 2.18.0
Created by: SL
Comments: 3
Category: UI for Blazor
Type: Feature Request
28

Just upgraded to Devcraft complete and I needed a Progress bar and was not able to see it on the current controls.

 

Will you add a Progress Bar Control for Blazor?  I want to use Telerik on all controls in my project as much as possible instead of pulling another control from the public nuget repository.

 

Thanks.

Joel

Completed
Last Updated: 05 Feb 2020 10:37 by ADMIN
Release 2.6.0
Created by: David
Comments: 11
Category: UI for Blazor
Type: Feature Request
27
We use the jQuery autocomplete in our apps now and would like to be able to use it in our Blazor apps.
Completed
Last Updated: 04 Aug 2020 13:59 by ADMIN
Release 2.16.0
Created by: ben
Comments: 8
Category: UI for Blazor
Type: Feature Request
26

Looking for the TreeList control from kendo-ui to be brought over from jQuery to Blazor https://www.telerik.com/kendo-ui/treelist

 

Completed
Last Updated: 10 May 2022 19:53 by ADMIN
Release 3.3.0
Created by: Kevin White
Comments: 2
Category: UI for Blazor
Type: Feature Request
26
I am really missing a "File Explorer" razor component in your Blazor offer. Most of our existing apps have a file explorer tied to a remote UNC shared network location.
Completed
Last Updated: 05 Dec 2019 11:23 by ADMIN
Release 2.5.0
Created by: shanthu
Comments: 6
Category: UI for Blazor
Type: Feature Request
23
Many applications need an ability to schedule people/resource.
Completed
Last Updated: 28 Apr 2023 12:37 by ADMIN
Release 3.7.0 (09 Nov 2022)
Created by: Elie
Comments: 6
Category: UI for Blazor
Type: Feature Request
22

This is a request for a new feature that I haven't seen across all of the Telerik products.

A new control that makes use of the HTML Canvas to allow for inking within web applications.

Can be used for free hand writing (inking) on mobile devices instead of requiring online keyboard in limited real estate scenarios. Can use to implement signature blocks on forms, convert to text, etc.