BoldDesk®Customer service software offering ticketing, live chat, and omnichannel support, starting at $49/mo. for 10 agents. Try it for free.
I have a service that calls an api and queries a list of datetime data.
I want during on page load, the datetime component should automatically disable the time that exist in the list of datetime data so a user wouldn't be able to pick or choose the the same time. where the date selected matches the date in the datetime data queried.
example is a booking service where one client shouldn't be able to select a time that is already booked for the selected date.
Hi Boot Dat,
Thank you for reaching out to us. We have reviewed your request and implemented a solution to disable the selected time from the time popup of the datetimepicker. Below, you'll find the revised code snippet based on your provided sample:
[Index.razor]
<SfDateTimePicker TValue="DateTime?" @bind-Value="@SelectedDate"> <DateTimePickerEvents TValue="DateTime?" OnOpen="OpenHandler"></DateTimePickerEvents> </SfDateTimePicker>
@code { public DateTime? SelectedDate { get; set; } = new DateTime(2024, 12, 2, 17, 0, 0);
public async Task OpenHandler() { await JSRuntime.InvokeVoidAsync("JSMethod"); } }
[Host.cshtml]
<script> function JSMethod() { setTimeout(function () { var elements = document.getElementsByClassName("e-list-item"); for (var i = 0; i < elements.length; i++) { if (elements[i].classList.contains("e-active")) { elements[i].classList.remove("e-active") elements[i].classList.add("e-disabled"); elements[i].style.pointerEvents = 'none' break; } } }, 200); } </script>
|
This implementation effectively disables the selected time from the time popup of the datetimepicker. If you have any further questions or need additional assistance, please feel free to ask.
Regards,
Yohapuja S
I'm not looking forward to disable a time that its date and time has been picked.
i have a list of datetime values
appointments = await BookingService.AppointmentList();
ExcludedTimes = appointments.ToList();
what I want is, if a user selects a date and that date exists in
ExcludedTimes, it should disable all the time of the datetime value available in ExcludedTimes that has been selected, so the user wouldn't be able to select a time that exists in
ExcludedTimes
Hi Boot Dat,
To disable specific dates and times in the DateTimePicker component, you can utilize the RenderDayCell
event to disable dates and the Open
event to disable times that are already appointed. Below is the updated code snippet and sample for your reference:
Index.razor @inject IJSRuntime JSRuntime @using Syncfusion.Blazor.Calendars <div class="col-lg-12 control-section">
@code { private void DisableDate(RenderDayCellEventArgs args) public async Task OpenHandler(object args) Layout.cshtml function JSMethod(excludedtimes, selectedDateTime) { setTimeout(function () { for (var i = 0; i < totalItems; i++) { if (selectedDateTime && excludedtimes.includes(selectedDateTime.split('+')[0])) { listItems[i].classList.add("e-disabled"); listItems[i].style.pointerEvents = 'none' </script> |
Documentation:
https://blazor.syncfusion.com/documentation/datetime-picker/events#onrenderdaycell
https://blazor.syncfusion.com/documentation/datetime-picker/events#onopen
And We have already considered the reported requirement “Restrict the time selection in the DateTimePicker component” as feature at our end and this support will be included in any one of our upcoming releases. At the planning stage for every release cycle, we review all open features, and this will be included in any of our upcoming future releases. You can now track the current status of your request, review the proposed resolution timeline, and contact us for any further inquiries through this link:
Feedback Link: https://www.syncfusion.com/feedback/28190/
Please cast your vote to make it count. We will prioritize the features every release based on the demands. If you have any more specification/suggestions to the feature request, you can add it as a comment in the portal.
Regards,
Priyanka K
I've already cast a vote on that feedback.
The solution provided works great, but the issue is it disables the date,
what is needed is to disable the times of the dates in
ExcludedTimes, so if a date is selected and that date belongs in
ExcludedTimes, the available times existing in the date should be disabled so times that isn't already existing can be picked or selected.
it can be that if an hour of a time is already existing, maybe 2pm is already existing in
01/06/2024 when that date is selected and it exists in ExcludedTimes , 2pm should be disabled
Hi Boot Dat,
To disable the time from the excluded datetime after the user selects the date, please follow the code below to achieve your requirement:
<script> setTimeout(function () { </script> |
Regards,
Priyanka K