To disable the DateTimePicker, set its
Enabled
property to false
.
The following code demonstrates the disabled component.
@using Syncfusion.Blazor.Calendars
<SfDateTimePicker TValue="DateTime?" Enabled=false Value='@DateTimeValue'></SfDateTimePicker>
@code {
public DateTime? DateTimeValue { get; set; } = DateTime.Now;
}
The output will be as follows.