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!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

2
Votes


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.