Hi,
I have the need to display a tooltip when my TelerikDropDownList is in error mode (css class = 'change-local-dropdown error'). However the tooltip does not show anything and when inspecting the TelerikDropDownList, no html element in the TelerikDropDownList tree has a 'title' property set. This despite me explicitly setting the Title property, as can be seen in the code below.
Here's my code
<TelerikTooltip TargetSelector=".change-local-dropdown.error" />
<TelerikDropDownList Data="@Zones"
AdaptiveMode="@AdaptiveMode.Auto"
Class="@(string.IsNullOrEmpty(_zoneError) ? "change-local-dropdown" : "change-local-dropdown error")"
@bind-Value="@SelectedZoneGuid"
TextField="@nameof(Zone.Name)"
ValueField="@nameof(Zone.Guid)"
Title="My tooltip that I want to display, but it isn't showing up"
Width="100%">
</TelerikDropDownList>
Blazor C# .Net
I have a vertical bar chart. The bars represent colors so the labels are like "red", "blue"...
Every time I do a search on the database the color count and values change. Like next time it will be "Yellow", "red"...
I want to draw the labels my self and have the colors as little squares under the name of the color.
Like get from where I am...
to labels like
I tried ChildContent on the ChartCategoryAxis but my function void CustomColorLabelDraw(RenderTreeBuilder builder) does not get the index of the tick, and does not get called as many times as there are bars, and the output if I return a AddMarkupContent of "My test string" ends up above the entire chart and outside the chart.
How does on use a C# function to generate the HTML to render a tick label?
<FormItem Field="@nameof(CronTriggerViewModel.EndAt)">
<Template>
<label for="endat" class="k-label k-form-label">@L10n["UI-TRIGGERENDAT"]</label>
<div class="k-form-field-wrap">
<TelerikDateTimePicker @bind-Value="@CronTriggerVM.EndAt" Placeholder=" " Id="endat" Format="G"/></div>
</Template>
</FormItem>
[Display(ResourceType = typeof(Resources.Scheduler), Name = "UI_TRIGGERENDAT")]
public DateTime? EndAt { get; set; } = DateTime.Now.AddDays(1);
Hy,
I have a grid with aggregates and I set an initial grouping on the OnStateInit method:
Everything is working fine but after the last update the initial grid view is as follows:
As you can see the grouping is duplicated. Can anyone help me?
The grid is attached
Thanks
Dear,
I have a small test application that uses the telerik DataGrid in Blazor.
For adding records to the dataGrid I use the Popup window.
When doing that and pressing the "update" button once, the popup window doesn't close but my record has been added and the reload of the DataGrid has happend.
Why doesn't it close ?
Kind Regards
Hi,
is there a way of reimplementing keyboard navigation when using a custom row template?
The documentation states that functionality is taken way due to not knowing the current state which is totally fine.
Maybe someone has an idea on how to reactivate or add keyboard shortcuts for selection and navigation.
Regards,
Tom
I have a question regarding the recurrence rules for jobs where the original jobs and the instances of recurrence are not in the same searched range.
For example:
foreach (var event in events)
{ event.RecurrenceRule = null;
var firstOccurence = new Job
{
Id = new Guid();
Start = new DateTime(event.Start.Value.Ticks).AddDays(1),
End = new DateTime(event.End.Value.Ticks).AddDays(1),
};
var secondOccurence = new Event
{
Id = new Guid();
Start = new DateTime(event.Start.Value.Ticks).AddDays(2),
End = new DateTime(event.End.Value.Ticks).AddDays(2),
};
recurrenceEvents.Add(firstOccurence);
recurrenceEvents.Add(secondOccurence);
}
events.AddRange(recurrenceEvents);