Datas to display in scheduler

I have a similar issue mentioned here
viewtopic.php?f=25&t=28898&p=102603#p102603
Here is my controller :

public ContentResult Data()
{
var data = new SchedulerAjaxData(
new Entities().tblTime.Select(e => new { e.SharedId, e.StartTime, e.Duration,e.ID}));
return data;
}

I have unitsview,monthview and customized decadeview to show 30days in the scheduler.
I get datas loaded in “var data” as mentioned in that post,
but couldnot get it displayed in the scheduler. Please guideme.

(I use database first with MVC razor.)

When I get Data() to hit during debugging, eventbox is not showing or I couldnt create eventbox on clicking scheduler. If I removed scheduler.DataAction=Url.Action(“Save”,“controlleraction”); I could create eventbox . Why is this?

public ContentResult Data() { var data = new SchedulerAjaxData( new Entities().tblTime.Select(e => new { e.SharedId, e.StartTime, e.Duration,e.ID})); return data; }please check the article about required properties in the loaded data
scheduler-net.com/docs/loading_d … quirements