Hi,
I have customized implementation of Scheduler and there are some tables in the back end I need to update after appointment dragged and dropped by the user. To have that custom tables update done I need to have newly added ID of exception appointment. To get that ID I handle this event in following way:
I have customized implementation of Scheduler and there are some tables in the back end I need to update after appointment dragged and dropped by the user. To have that custom tables update done I need to have newly added ID of exception appointment. To get that ID I handle this event in following way:
Private Sub RadScheduler1_RecurrenceExceptionCreated(sender As Object, e As Telerik.Web.UI.RecurrenceExceptionCreatedEventArgs) Handles RadScheduler1.RecurrenceExceptionCreated RadScheduler1.DataBind() Dim NewAppID As Integer = GetLastAddedAppointmentID(RadScheduler1) 'my own function End Sub This is my workaround of what might be a much more straightforward process. Moreover, with that approach there can be some issues with concurrency when more than one user are working on the same scheduler. So the question is what would be better way to extract that newly added ID of exception appointment? Please advise. Thanks!