Hi,
I have used scheduler in my application. I am facing problem in update event. When I click on event and update description in the wizard and when click on the update button, it fetches old data from wizard.
So, How can I update data? Code is as below.
Please help me to solve this.
Thanks,
Dhaval
I have used scheduler in my application. I am facing problem in update event. When I click on event and update description in the wizard and when click on the update button, it fetches old data from wizard.
So, How can I update data? Code is as below.
| Protected Sub schProject_AppointmentUpdateCommand(ByVal sender As Object, ByVal e As Telerik.Web.UI.AppointmentUpdateCommandEventArgs) Handles schProject.AppointmentUpdateCommand |
| With e.Appointment |
| ScheduleID = Integer.Parse(.ID) |
| ProjectID = Integer.Parse(.Resources(0).Key(0)) |
| ProjectName = .Subject |
| StartDate = .Start |
| EndDate = .End |
| ProjectNotes = "" |
| RecurrenceRule = .RecurrenceRule |
| RecurrenceRuleParentID = .RecurrenceParentID |
| End With |
| Dim blnUpdate As Boolean = UpdateSchedule() |
| End Sub |
Please help me to solve this.
Thanks,
Dhaval