
It seems this documentation isn't correct:
Blazor Predefined Dialogs - Alert, Confirm, Prompt - Telerik UI for Blazor
When I create the following dialog it seems to be missing 2 overloads:
bool isDeactivate = await Dialogs.ConfirmAsync($"Deactivate the {ContextLink.Name} {Title}?", "Deactivate Record?", "Yes", "No");I get this error:
Severity Code Description Project File Line Suppression State Error CS1501 No overload for method 'ConfirmAsync' takes 4 arguments Gsi.Cloud.Maintenance.Rebuild C:\GSI Cloud\Dev\Gsi.Cloud.Maintenance\Gsi.Cloud.Maintenance.Rebuild\Components\ContextLinks\Details.razor.cs 195 Active
When I chop out the "yes", "no" parameters then no error. It'd be nice to have the option to set those values as advertised in the documentation... but, its not there.

Hi,
Recently, I just updated my Blazor project to .NET8 and facing the following issue every time rendering Telerik Components.
This issue doesn't appear when using .NET7 and Telerik Blazor UI 5.0.1.
Please let me know if you have been facing this issue before.

My current packages:
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="8.0.1" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.1" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="8.0.1" />
<PackageReference Include="Microsoft.CodeAnalysis" Version="4.8.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Telerik.DataSource" Version="3.0.0" />
<PackageReference Include="Telerik.Documents.Core" Version="2023.3.1106" />
<PackageReference Include="Telerik.Documents.SpreadsheetStreaming" Version="2023.3.1106" />
<PackageReference Include="Telerik.Recurrence" Version="0.2.1" />
<PackageReference Include="Telerik.UI.for.AspNet.Core" Version="2023.2.718" />
<PackageReference Include="Telerik.UI.for.Blazor" Version="5.0.1" />
<PackageReference Include="Telerik.Zip" Version="2023.3.1106" />
</ItemGroup>

Hi,
Using the editor, is it possible to combine the built-in tools and the custom ones?
I would like to use the Tools="EditorToolSets.All" as well as the @ToolCollection that I created at the same time.
Regards,
Omar
Hi,
Is there a simple example of how to implement the File manager?
Is there a working example that we can download?
Regards,
Omar

Hi,
since not all ARIA attributes are supported, I have to set some attributes manually. Setting aria-required (e.g. for textbox controls) by JavaScript is working:
function activateRequired(targetControlId) {
if (targetControlId) {
field = document.getElementById(targetControlId);
if (field) {
field.setAttribute("aria-required", "true");
}
}
}Now I have to set aria-hidden for the internal button of combobox.
Is it possible to get this button to set the attribute?
Regards, Stefan
Hi,
Any way to have an event callback when clicking a row in the TelerikGrid with middle mouse button?
Looks like the OnRowClick event is only triggered when using left mouse button.
KR,
Lennert

We're using a TelerikGrid with Row Drag & Drop and Hierarchy, which generate icon columns in the grid as shown below. Column 1 for drag & drop, column 2 for the hierarchy expansion.
However, we'd like to change the order of these columns around, for example we'd like to put a checkbox column in as the first column.
Is this possible?
