Hi,
I have a calendar control with initial date. It could be "Today" or any other date. The Calendar works fine but the initial date is not visually selected. If I click on any date it's get selected and displayed in "red" but I need it selected initially without user intervention.
<TelerikCalendar SelectionMode="@CalendarSelectionMode.Single"
ValueChanged="@( (DateTime d) => OnBeginDateChangeHandlerAsync(d) )"
Min="@beginmin" Max="@beginmax"
@bind-Date="@begindate">
</TelerikCalendar>
@code {
protected DateTime begindate { get; set; } = DateTime.Now.AddDays(-8).Date;
}
Thanks.