Hi,
I would like to build a Telerik Editor which shows users the changes made in the editor. some of the HTML tag I think useful are:- "ins" and "del".
However, when pasted my HTML, the "ins" tag seems to be automatically removed. Could you advise why and how i could resolve this issue?
Code entered using "View HTML" button
<del class='diffmod'>ended</del>
<ins class='diffmod'>January</ins> HTML showing as below (January should be highlighted but its not)
<p><del>ended</del>
January </p>Many thanks!
Hi,
How can I get the tooltips for validation each field displayed at the corresponding field in a Grid Popup form and not just at the summary below the for the Form etc? Also, there is almost no spacing between the last field and the validation summary. Thanks.

Anyone been able to get BlazorMonaco and Telerik Blazor to work together? Just adding the javascript files to project prevents app from even loading.
This line is the culprit. App loads without it but obviously Monaco editor will not load without it.
<script src="_content/BlazorMonaco/lib/monaco-editor/min/vs/loader.js"></script>
Telerik Blazor 2.30
BlazorMonaco 2.1.0
.NET 6
Here is just one of the many exceptions:
Thanks
Jim
Message: Unhandled exception rendering component: Could not find 'TelerikBlazor.getLocationHost' ('TelerikBlazor' was undefined).
Hello I have a question related to Validation.
In our application we use forms that are dynamically rendered (without using a model). Therefor we are not able to use the TelerikFrom and its edit context. I was wondering if it is possible to do Validation on a single Property/field and show a validation message (with the Validation built by Telerik)? As far as I can see, you seem to only support validation for components wrapped in the TelerikForm/EditForm. Thanks in advance
In the current version 2.30
Is it possible to create a component with containing a TelerikWindow (Modal = true) witch in turn also has another component containing another TelerikWindow (Modal = true), this last being opened when clicking for example on a button of the 1st component?
So far several unsuccessful attempts (using Visible & VisibleChanged or @bind-Visible)
Thanks in advance.
Hi,
Im looking to make a carousel but I would like it to show more than 1 item at once < item1 item2 item3> instead of <item1> and onclick I would get <item2 item3 item4>
I can give the items in the dropdown a color, but once these items are selected i have no influence over the formatting.
The selected items are always a <span>item name</span> even if the corresponding item in the dropdown has its own style with a red color.
Is there a workaround so I can format selected items as well?
Even in the demo example, it shows Country as a textbox instead of a dropdown.
How to integrate a dropdown with the telerik form in the wizard?
<TelerikChart Transitions="false">
<ChartTooltip Visible="true" />
<ChartLegend Visible="false" />
<ChartChartArea Background="transparent" />
<ChartSeriesItems>
<ChartSeries Type="ChartSeriesType.Line"
Name="Value"
Data="@Data"
Field="Value"
CategoryField="Time">
</ChartSeries>
</ChartSeriesItems>
</TelerikChart>Hello there
I am using Telerik Filtering,
here is my code snippet
<TelerikGrid Data="@UsersSource" Height="400px"
Pageable="true" PageSize="PaginationHelpers.PageSize"
FilterMode="GridFilterMode.FilterRow"
Resizable="true" Reorderable="true"
OnRowClick="@OnRowClickHandler"
SelectionMode="@GridSelectionMode.Multiple"
@bind-SelectedItems="@SelectedUsers">
<GridColumns>
<GridCheckboxColumn />
<GridColumn Field="@(nameof(User.Name))" Title="@_translator["NameLabel"]" />
<GridColumn Field="@(nameof(User.Username))" Title="@_translator["UserNameLabel"]" />
<GridColumn Field="@(nameof(User.BirthDate))" Title="@_translator["DateOfBirthLabel"]" DisplayFormat="{0: MM/dd/yyyy}" />
<GridColumn Field="@(nameof(User.Role))" Title="@_translator["RoleLabel"]" />
</GridColumns>
</TelerikGrid>but this does not show the proper value in Filetering drop-down, it's show like this
instead of