Hi there,
<SfSchedule ShowTimeIndicator="true" ShowQuickInfo="false" AllowResizing="true" @ref="Schedular" TValue=JobsListingDisplayModel Width="100%" CssClass="schedule-cell-dimension"
AllowDragAndDrop="true" StartHour="@branch.OpeningTime.ToString().Substring(0, 5)" EndHour="@branch.ClosingTime.ToString().Substring(0, 5)" SelectedDate="Filter.Today" CurrentView="View.Day">
<ScheduleEvents TValue="JobsListingDisplayModel" Dragged="OnDragged" OnDragStart="OnJobDrag" Resized="OnResized" OnPopupOpen="@PopupOpen"></ScheduleEvents>
OnDrag event gives the default start and end time.
Thank you.