We have a RadScheduler using a web service binding with
If we call RadScheduler1.Rebind() in the code behind then
Is this the expected behaviour? Are we supposed to be rebinding the scheduler differently?
ResourcePopulationMode=
"ServerSide"
. The GetResources
method is as per the documentation:
[WebMethod]
public
static
IEnumerable<ResourceData> GetResources(MySchedulerInfo schedulerInfo)
{
return
Controller.GetResources(schedulerInfo);
}
GetResources
is called but the resources are added to the RadScheduler rather than replacing them, with the result that duplicate resources appear.Is this the expected behaviour? Are we supposed to be rebinding the scheduler differently?