<SfCalendar TValue="DateTime" HtmlAttributes="@htmlAttributes" ></SfCalendar>
@code {
public Dictionary<string, object> htmlAttributes { get; set; } = new Dictionary<string, object>() { { "class", "e-disabled" } };
}
<style>
.e-control.e-calendar.e-disabled{
pointer-events: none;
}
</style> |