I have a very simple scenario with a TelerikDropDownList, like the following:
<TelerikDropDownList Data="@foundComponents"
@bind-Value="@componentId"
ValueField="ComponentId"
TextField="Description">
</TelerikDropDownList>Then, I have declared the required properties and then there is my method that loads the data in the "foundComponents" collection.
@code {
protected string? componentId;
protected IEnumerable<Component>? foundComponents;
...
private async Task SearchComponentAsyncHandler()
{
foundComponents = (await JsonSerializer.DeserializeAsync<ZollerBrowseResult>(responseStream)).BrowseResult?.Select(x => x.Component);
}
}and this is my "ZollerBrowseResult" model and its related classes:
public class ZollerBrowseResult
{
public required BrowseResult[]? BrowseResult { get; set; }
}
public class BrowseResult
{
public required Component Component { get; set; }
}
public class Component
{
public string? ComponentId { get; set; }
[JsonPropertyName("Component.ComponentId")]
private string Component_ComponentId { set { ComponentId = value; } }
public string? Description { get; set; }
public Article? Article { get; set; }
}For some reason, when I run the application, the Dropdown doesn't show the Description property, it shows the class FullName instead.
I don't understand what I am doing wrong here.
Hi,
I am encountering an issue with the Telerik Grid in our Blazor project. Specifically, when there is only one record on the second page of the grid, and I delete that record, the grid does not automatically jump back to the first page, even after refreshing the grid.
Steps to Reproduce:
I would appreciate any guidance on how to resolve this issue or if there are any workarounds you could recommend.
Thank you for your assistance!
Hello,
how can a tooltip be displayed on a disabled button?
I have a use case where the user should be informed of the reason for the disabled button through the tooltip.
Thank you in advance!
https://blazorrepl.telerik.com/GoENGaYV59uuC3IQ44
Hi.
I have a requirement I'm stumped with. I want to get the folder name when click on the tree view. I found that Telerik has SelectedItemsChanged but it only works for the files/folders on content view.
I can't think of any way to do this - is it possible?
Thanks,
Hang Pham

Does anyone have some sample code showing how to populate a Telerik Blazor Grid with data from a MSSQL Stored Procedure? I am using a Blazor Server template and have got it populating from a table/class model, but not quite sure of the syntax for populating from a stored proc. I will then want to implement CRUD operations. Any help would be very much appreciated!

In Telerik themes, we see this z-index on .k-tooltip. This would put it comfortably above some other high z-index values we had to use.
.k-tooltip {
z-index: 12000;
}
However, it's held within a div class="k-animation-container telerik-blazor" which has low z-index such as 3 or 11. This puts it below our z-index, which might be in the 900s. Was there a reason this k-animation-container z-index was so low?

Hi.
I have a requirement I'm stumped with. The client has a wizard and they want to enforce linear flow when moving forwards in the wizard, but they want it to be possible to skip back more than one step at a time.
So on any given step you can only go forwards one step, but you can go back more than one.
I can't think of any way to do this - is it possible?
Thanks,
Dean
Hi,
I am using Telerik UI for Blazor version 5.0.1 in my project, and a Veracode scan has identified a vulnerability in this version (see the attached image for details). Could you please advise on a solution to address this issue and how we can resolve it?
Thank you.

I have a bool property binded in two way to a dialog checkbox.
if i change the check value, the variabile inside the dialog in binded correctly, but the variable binded in the main component in not updated.
Check this sample, if i set the check and close the dialog, the parent compoent variable is not updated.
https://blazorrepl.telerik.com/ceuZbwah44LSdBQu06
how to solve?
Main.Razor
}
CheckDialog.Razor