When using two-way bind, the bind only happens for the RadzenDatePicker when the user click outside the component.
<RadzenFormField Text="New Date" Variant="Variant.Outlined">
<RadzenDatePicker TValue="DateTime?" DateFormat="dd/MM/yyyy"
@bind-Value="Valor" />
</RadzenFormField>
For the normal Blazor input I can use @bind="Valor" and @bind:event="oninput" to make teh value when teh user types. Is that possíble with the RadzenDatePicker ?