Hi Ralph,
Thanks for using Syncfusion products.
We regret for the inconvenience caused, as we are able to reproduce the reported issue. Therefore, we suggest you to use the actionComplete event to get the updated start/end time, instead of using the resizeStop and dragStop events. Refer the below code snippet to get the updated time in the actionComplete event.
<code>
@(Html.EJ().Schedule("Schedule1")
.Width("100%")
.Height("525px")
.EnableRTL(false)
.AllowKeyboardNavigation(false)
.TimeMode(Syncfusion.JavaScript.TimeMode.Hour12)
.CurrentDate(new DateTime(2014,6,2))
.ScheduleClientSideEvents(evt =>
evt.ActionComplete("onActionComplete")
.ResizeStop("onResizeStop")
.DragStop("onDragStop"))
.AppointmentSettings(fields => fields.Datasource(Model)
.Id("Id")
.Subject("Subject")
.StartTime("StartTime")
.EndTime("EndTime")
.AllDay("AllDay")
.Recurrence("Recurrence")
.RecurrenceRule("RecurrenceRule"))
)
<script>
function onActionComplete(args) {
if (args.requestType == "appointmentResize" || args.requestType == "appointmentDrag")
{
var appointment = (args.requestType == "appointmentResize") ? args.data[0] : args.appointment[0];
alert("Subject: " + appointment.Subject + "\nStartTime: " + appointment.StartTime + "\nEndTime: " + appointment.EndTime);
}
}
</code>
And for your reference we have prepared the sample, which can be downloaded from the following location.
http://www.syncfusion.com/downloads/support/directtrac/general/ScheduleSample10700227.zip
Kindly refer the sample and let us know if you need any further assistance on this.
Regards,
Sarath Kumar P K
Hi Ralph,
Thanks for your update.
We regret for the inconvenience caused, as we are able to reproduce the reported issue. We have already logged a defect report for this and therefore, the fix for this issue will be included in our next Main release Volume-1, 2015.
We appreciate your patience until then.
Regards,
Velmurugan
Hi Ralph,
We have planned to release our next Volume 1, 2015 Essential Studio release at the end of the month March.
Please let us know if you need any further assistance on this.
Regards,
Velmurugan