I'm using RadzenFormField
with tooltips on about 15 fields on my screen. When I hover over the fields, there's a noticeable lag, and the response time is slower than expected. Try adding some delay but not fixed my issue.
Here is an my example code:
<RadzenFormField Text="Sample text" MouseEnter="@(args => ShowTooltip(args,"SampleHoverText", new() { Position = TooltipPosition.Top, Duration = null, Delay = 200 }))" MouseLeave="HideTooltip">
<CustomDatePicker Name="Expiration" ShowTime="true" @bind-Value=@Expiration Disabled=IsDisabled Min="Effective" TValue="DateTimeOffset" />
1 Like