This is a migrated thread and some comments may be shown as answers.

sending extra info to provider Using WCF in RadScheculer

1 Answer 23 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Kuldeep
Top achievements
Rank 1
Kuldeep asked on 20 May 2013, 02:26 PM
Hi,
This is possible using web services:
//RadScheduler Client side events
 function OnClientAppointmentsPopulating(sender, eventArgs) {
            debugger;
            eventArgs.get_schedulerInfo().physicianID = document.getElementById('PhysicianID1').value;
            eventArgs.get_schedulerInfo().visitStatus = status;
        }

in AppointmentSchedulerInfo class

    public int PhysicianID { get; set; }
    public string VisitStatus { get; set; }
    public AppointmentSchedulerInfo(ISchedulerInfo baseInfo, int physicianID,string visitStatus)
        : base(baseInfo)
    {
        PhysicianID = physicianID;
        VisitStatus = visitStatus;
    }
    public AppointmentSchedulerInfo()
    {
    }

how to achieve this functionality using WCF  ??

Please update me.

Regards,
Kuldeep

1 Answer, 1 is accepted

Sort by
0
Plamen
Telerik team
answered on 22 May 2013, 05:42 AM
Hi,

 You can refer to this Code Library where are provided all the steps to sent more information to the service. The steps are exactly the same in scenario with WCF service.

Hope this will be helpful.

Regards,
Plamen
Telerik
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
Tags
Scheduler
Asked by
Kuldeep
Top achievements
Rank 1
Answers by
Plamen
Telerik team
Share this question
or