Welcome to the Blazor feedback portal. We’re happy you’re here! If you have feedback on how to improve the Blazor, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

Hi

Scheduler quick dragging cursor problem was fixed in feedback 46034 (https://www.syncfusion.com/feedback/46034/scheduler-quick-dragging-on-the-appointments-leads-the-cursor-to-move-away-from).

We finally were able to test this and it works fine IF args.Interval is using default value (30) or it is set to default value. However, if you set this to some other value (for example 5), problem still exists if you do dragging very fast as it was defined in original issue.

        private void OnDragStart(DragEventArgs args)
        {
            args.Interval = 5;
         }

I believe you can test it as it is defined here (args.Interval = 10): (https://blazor.syncfusion.com/documentation/scheduler/appointment-drag-and-drop#setting-drag-time-interval)

Would it help if you could define default value something else than 30mins?

Unfortunately we can't use default value 30, because our events are quite short and 30 min as way too long. 5 min is suitable for our UI.


Br,

Juha