Hi
iam using dhtmlx scheduler and loading the data using DataAction with below code which is called from jquery.
public ContentResult MapEvents()
{
List<Appointments> obj = (List<Appointments>)Session["totalappointments"];
var data = new SchedulerAjaxData(obj);
List<object> sections =(List<object>)Session["sections"];
data.ServerList.Add("sections", sections);
return data;
}
Is there any other way so that i can add the events to scheduler without using DataAction so that ajax call will be avoided which is delaying the loading of events now