desactivate scroll and make it clearly its a new 'day' in the schedule

Hi,

Is there a way to desactivate the scroll that is triggered when we click in the center of the schedule and drag the shedule right or left? (timeline view)

And is there a way to make the user know they are in a different day when they are with a week view and they are scrolling? IS there a way to format the schedule or display a message saying they just scrolled to a new day? is there method called when this happens? 




1 Reply

VS Venkateshwaran Saravanakumar Syncfusion Team July 17, 2023 01:44 PM UTC

Hi Alexis,

UG: https://ej2.syncfusion.com/vue/documentation/schedule/appointments#auto-navigation-of-date-ranges-on-dragging-an-event

You can achieve your requirement by setting navigation to true within the dragStart event as demonstrated in the code snippet below. By this you can navigate through the date ranges on dragging an event. Refer to the shared UG and demo links for more details.

[App.vue]

 onDragStart: function(args) {

      args.navigation = { enable: true, timeDelay: 4000 }

    }



Regards,
Venkatesh


Loader.
Up arrow icon