I set Initial date for the scheduler to current Month
var currentDate = new Date();
scheduler.config.init_date = new Date(currentDate.setMonth(currentDate.getMonth()));
List view doesn’t show same day events for current day, for example,
initial date month is July and today’s date is 7/15/2014, events that starts and ends on 7/15/2014 are not displayed in List view but can be seen in calendar view, however it shows events which start on 7/15/2014 but ends second day.
Any idea how to fix this issue?