Welcome to the Blazor feedback portal. We’re happy you’re here! If you have feedback on how to improve the Blazor, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
While disabling the AllowEdit property, then DatePicker throws a console error.
Issue reproducing code:
<hr />
<p>DatePicker value is: @DateValue</p>
<hr />
<SfDatePicker TValue="DateTime?" @bind-Value="@DateValue" ShowClearButton="false" AllowEdit="false"></SfDatePicker>
@code{
public DateTime? DateValue { get; set; } = DateTime.Now;
}
Expected output: Control should be rendered without any exception and not able to allow typing in the input.
Actual output: Control throws an exception while disabling the property.