Hi there,
I have got a scheduler and a grid on the page and I basically drag an item from the grid and drop onto the scheduler.
The controls are working on the server-side.
The scheduler involves the assigned appointments and the grid involves the unassigned appointments. The scheduler is also grouped by the staff list which ultimately shows that staff list and the staff's appointment based on the date.
So, the problem occurs once I drag and drop onto the scheduler control. The scheduler and the grid are refreshing (the loading circle comes up) however, the data are on the same spot at the end. I have to refresh the page to see the right result which the data has moved from the grid to the scheduler.
Here is my server side code which does the last thing in order to refresh the controls, however, that doesn't work.
Appreciate your help and time.
1.private void BindData()
2. {
3. RadScheduler2.DataSource = Appointments;
4.
5. RadGrid1.DataSource = UnassignedAppointments;
6. RadGrid1.DataBind();
7. }