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?
During drag'n'drop, the Grid has a drop hint to indicate where a row will be placed. (See e.g. https://demos.telerik.com/blazor-ui/grid/drag-drop)
The ListBox does not have a drop hint, making it hard to guess in which position the dragged element will end up in. (See e.g. https://docs.telerik.com/blazor-ui/components/listbox/drag-drop)
Can you add the drop hint?
TYVM
Lukas
How to start a Server Blazor Application with your tool? Visual Studio extension permits only WebApp for .NET8.
Is there a way to set the spacing between nested donuts? Multiple series.
Also, I would like to set the donut section stroke/border. I can do it in xaml but have no clue as to how in html. Actually I haven't much of clue in general since I'm a html/css rookie. Oh the pain... please make it stop.
Thanks guys.
I have a TelerikComboBox that uses the OnRead-Event inside of an EditForm. Binding the selected Value (an Id of type "long") using bindValue to my model in the Edit form is not the problem. However when the component loses focus the selected value resets and I can't submit the form. I guess this is just the default behavior. Using the ValueChanged-Event I realized that it fires not only on selection but also when the component loses focus, which is only the case when using the OnRead-Event. Is there a way for me to disable the firing of the ValueChanged-Event on Blur?
This is my ComboBox:<EditForm Model="model" OnValidSubmit="HandleValidSubmitAsync">
<FluentValidator></FluentValidator>
<p>Selected Value: @model.UserId</p>
<p>
<label class="required" for="...">@FieldsLoc["..."]</label>
<TelerikComboBox TItem="Model"
TValue="long"
OnRead="@ReadItems"
@bind-Value="model.UserId"
ValueField="Id"
TextField="DisplayName"
Filterable="true"
FilterOperator="StringFilterOperator.Contains"
Width="100%">
</TelerikComboBox>
<ValidationMessage For="@(() => model.UserId)"></ValidationMessage>
</p>
<TelerikButton OnClick=@(args=> createDialogOpen=false)>@AppLoc["Cancel"]</TelerikButton>
<TelerikButton ThemeColor="@ThemeConstants.Button.ThemeColor.Primary">@AppLoc["Save"]</TelerikButton>
</EditForm>