Completed
Last Updated: 04 Apr 2024 13:44 by ADMIN
Release 2024 Q2 (May)
Daniel
Created on: 16 Mar 2023 18:26
Category: Scheduler
Type: Bug Report
7
When creating an appointment Start and End editors display the default DateTime value
When creating an appointment, the Start and End editors should display the date (and time) of the slot the user clicked on.
2 comments
ADMIN
Dimo
Posted on: 20 Sep 2023 15:29

Hello everyone,

Indeed, I agree that this is an unpleasant issue and I bumped the priority in our internal backlog. Please use the following workaround while we fix it:

The OnEdit event of the Scheduler provides the start and edit time of the clicked slot. Set those (or different values) to the edit item:

    private void SchedulerOnEditHandler(SchedulerEditEventArgs args)
    {
        var editedItem = (SchedulerAppointment)args.Item;
        if (args.IsNew)
        {
            editedItem.Start = args.Start;
            editedItem.End = args.End;
        }
    }
 

Regards,
Dimo
Progress Telerik

Stay tuned by visiting our public roadmap and feedback portal pages! Or perhaps, if you are new to our Telerik family, check out our getting started resources!
Ed
Posted on: 29 Mar 2023 21:08
Agree, this is standard behavior for most calendars, and works properly on the Telerik Ajax Scheduler.  This should be fixed right away.