Completed
Last Updated: 27 May 2020 10:20 by ADMIN
Release 2.15.0
Created by: wu
Comments: 1
Category: UI for Blazor
Type: Bug Report
1
Affects the date pickers as well.
Completed
Last Updated: 31 Jan 2022 15:46 by ADMIN
Release 3.0.1

---

ADMIN EDIT

The following should let the multiselect render above the custom yellow element, but it does not. A workaround is available as the second CSS snippet that you can uncomment.

<style>
    /*should work but does not*/
    .high-zindex {
        z-index: 124;/*note how this is higher than the z-index of the div element, and is higher than the default z-index of the component*/
    }

    /*workaround*/
    .k-animation-container {
        z-index: 15000;
    }
</style>

<div style="position: absolute; z-index: 123; width: 600px; height: 200px; background: yellow;">
    <TelerikMultiSelect Data="@Countries"
                        @bind-Value="@Values"
                        Placeholder="Enter Balkan country, e.g., Bulgaria"
                        ClearButton="true" AutoClose="false"
                        PopupClass="high-zindex">
    </TelerikMultiSelect>
</div>

@code {
    List<string> Countries { get; set; } = new List<string>();
    List<string> Values { get; set; } = new List<string>();

    protected override void OnInitialized()
    {
        Countries.Add("Albania");
        Countries.Add("Bosnia & Herzegovina");
        Countries.Add("Bulgaria");
        Countries.Add("Croatia");
        Countries.Add("Kosovo");
        Countries.Add("North Macedonia");
        Countries.Add("Montenegro");
        Countries.Add("Serbia");
        Countries.Add("Slovenia");

        base.OnInitialized();
    }
}

---

Duplicated
Last Updated: 24 Apr 2021 19:05 by ADMIN
Created by: Datafyer
Comments: 1
Category: UI for Blazor
Type: Feature Request
1

It would be helpful if I had a rating control similar to Rating - MudBlazor.

Further it would be helpful if the selected/unselected items could be different visually for colors and icons.

Completed
Last Updated: 08 Apr 2021 15:52 by ADMIN
Created by: Rahul
Comments: 1
Category: UI for Blazor
Type: Feature Request
1
Can we export blazor grid as jpg??? Is there any options available?? Is this possible
Duplicated
Last Updated: 05 Apr 2021 10:58 by ADMIN
Created by: Ben Hayat
Comments: 1
Category: UI for Blazor
Type: Feature Request
1

Hello Team;

I'd would to see an Image & gallery Blazor component that is is data bound with the following effects:
https://ambient-image.wemakesites.net/?ref=madewithvuejs.com

This will allow us to create attractive apps related to imaging and marketing apps.

Thanks!

 

Completed
Last Updated: 14 May 2020 16:19 by ADMIN
Created by: Darryl
Comments: 1
Category: UI for Blazor
Type: Feature Request
1
One feature that is missing from the current set of Blazor UI components is a chips control. I'm not sure if it's OK to link to 3rd party controls, but this is a fairly common control that is available on multiple platforms. I can provide some samples if required.
Declined
Last Updated: 01 Apr 2021 15:58 by Ben Hayat
Created by: Ben Hayat
Comments: 2
Category: UI for Blazor
Type: Feature Request
1

Hello team;

Let's say, depending on the user's authorization level, we just want to show the content of the Editor as "Read-Only" with no toolbar. So it will basically looks like an HTML rendered content to them to read.

Is it possible to do so with Editor or can we add a feature to hide the toolbar and make it read only?

If not, what's the best way and lightest way to show the content as read-only on different devices based medias query?

Thanks!

Declined
Last Updated: 18 Mar 2021 16:01 by ADMIN
Created by: Stewart
Comments: 1
Category: UI for Blazor
Type: Feature Request
1

Currently, the notification is displayed behind the overlay of the window modal. I was wondering if it might be better to be in front.

Duplicated
Last Updated: 19 Jun 2020 10:18 by ADMIN
Created by: AlekseyN
Comments: 1
Category: UI for Blazor
Type: Feature Request
1
Please add a Word document Viewer blazor component
Duplicated
Last Updated: 19 Jun 2020 10:19 by ADMIN
Created by: AlekseyN
Comments: 1
Category: UI for Blazor
Type: Feature Request
1
Please add a Excel document Viewer blazor component
Completed
Last Updated: 18 Feb 2022 16:42 by ADMIN
Release 3.0.0
Created by: David
Comments: 0
Category: UI for Blazor
Type: Feature Request
1
I would like to have the .nupkg files provided by Telerik signed so they can be verified with dotnet nuget verify
Completed
Last Updated: 29 Jun 2020 13:50 by ADMIN
Release 2.16.0
Created by: Andrei
Comments: 1
Category: UI for Blazor
Type: Bug Report
1

build.config showing in project as a linked file......

linked path: :\Users\User\.nuget\packages\telerik.ui.for.blazor\2.15.0\contentFiles\any\netstandard2.1\build.config

content:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <packageSources>
    <add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
    <add key="LocalNuget" value="D:\Jenkins\Workspace\Blazor-Package\nugets" />
  </packageSources>
</configuration>

Completed
Last Updated: 07 Sep 2020 14:48 by ADMIN
Created by: Marcos Mataloni
Comments: 3
Category: UI for Blazor
Type: Feature Request
1
It could be nice to have a Timebar component like in WPF controls
Duplicated
Last Updated: 23 Feb 2021 12:41 by ADMIN

Step by step:

  1. Clear the date
  2. Set date using calendar
  3. Submit form
  4. Result: Prompt validation message: "The date format is not parsable. Please enter valid date."
  5. If you write the date manually, this validation message not show and can submit.

Note: The definition of de Datetime is not nulleable.

Screenshot:

 

Project: Attachment zip file.

Duplicated
Last Updated: 23 Aug 2022 07:36 by ADMIN
Created by: Thomas
Comments: 0
Category: UI for Blazor
Type: Feature Request
1

At the moment only the TelerikTextBox has a Title parameter that I can use to add a tooltip to it.

---

ADMIN EDIT

A workaround for the others can be wrapping them in another HTML element whose title attribute you can use.

Here is an example with the checkbox:

<span title="the checkbox title">
    <TelerikCheckBox @bind-Value="@theBool"></TelerikCheckBox>
</span>
@code{
    bool theBool { get; set; }
}

---

Declined
Last Updated: 16 Feb 2021 11:23 by ADMIN
Created by: Andrzej
Comments: 7
Category: UI for Blazor
Type: Feature Request
1

Hi,

Please add Resizable flag for All your Popups (DropDownList, CombobBox, etc...)

It would be also good to allow Resize AnimationContainer

Regards

Andrzej

Completed
Last Updated: 27 Jan 2021 17:32 by ADMIN
Created by: De
Comments: 1
Category: UI for Blazor
Type: Feature Request
1
Is it possible to add a header row for an entire Blazor Grid?  I don't mean a column row, group row, or a command row, I mean a header row for the entire grid.  E.g. I want a row at the top of the grid not related to my model, but which can contain things like instructions, etc.
Duplicated
Last Updated: 06 Oct 2020 17:23 by ADMIN
Syncfusion has a gantt chart for Blazor, Telerik does't have such a control for Blazor, why? I do not wan't to switch to Syncfusion!

Duplicated
Last Updated: 08 Jan 2021 19:58 by ADMIN

Subject says it all.  We're porting a large WPF application to Blazor and need WPF Telerik controls with corresponding functionality.  One of those controls is the breadcrumb control.

Would need to work in Blazor client or server topologies.

Duplicated
Last Updated: 12 Oct 2020 06:50 by ADMIN
Created by: Ben Hayat
Comments: 1
Category: UI for Blazor
Type: Feature Request
1

Hello Team;

Is there plan to offer "Card" component where we can create a card with different parts and properties, i.e. Title, Sub-Title, Text, Image, Action buttons and etc.

Something like this:

https://vuetifyjs.com/en/components/cards/#grids

If my memory serves me right, I thought I had seen as part of 2021 R1 roadmap.

Thanks!