How can I filter just in agenda view only?
Because I no need to filter Month View.
I think that In below method is included month view and agenda view,
I can’t separate loading data to agenda view only.
public ContentResult Data()
{
Load Linq data with condition(this.Request.QueryString[“StartDate”])
var CalendarEventtmp = new List();
for each Linqdata
{
var calendartmp = new CalendarEvent();
calendartmp.text = xxx
calendartmp.start_date = xxx
calendartmp.end_date = xxx
CalendarEventtmp.Add(calendartmp);
}
var data = new SchedulerAjaxData(CalendarEventtmp);
return (data);
}
Thanks for advance.