Hi there,
I've been looking at this thread, and this section in the online documentation:
http://www.telerik.com/help/aspnet-ajax/scheduler-sending-additional-information-to-the-web-service.html
But I'm struggling to make my radscheduler populate from my web service at the moment.
I've got the following in my sheduler control
<WebServiceSettings Path="~/Services/Calendar_Service.asmx" />
And have a javascript function being called with the 'OnClientAppointmentsPopulating', which sets my accountid property :
eventArgs.get_schedulerInfo().AccountID
I've my own SchedulerInfo class:
My web service takes an object of this class as a param:
And I have my own custom provider that takes an ISchedulerInfo param with it's 'GetAppointments' method.
However, when I run this, I just get a javascript alert with the following error (twice):
"No parameterless constructor defined for type of 'Classes.MySchedulerInfo'"
I've tried to do this as per the instructions, what am I missing?