When the component's Adaptive mode is set to Auto, the Date & Time buttons in the popup are not rendered.
<AdminEdit>
Here is a CSS workaround that hides the titlebar in adaptive mode so that the buttons are present:
<style>
.k-actionsheet-titlebar.k-text-center{
display: none;
}
</style>
<TelerikDateTimePicker @bind-Value="@SelectedTime"
Format="MM/dd/yyyy hh:ss"
ShowWeekNumbers="true"
Id="selected-date"
AdaptiveMode="Telerik.Blazor.AdaptiveMode.Auto">
</TelerikDateTimePicker>
@code {
private DateTime? SelectedTime = DateTime.Now;
}
</AdminEdit>