Current day event is notdisplayed the List view

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?

Hi,

If you want to set init_date for the scheduler that starts from the beginning of the current day, you can use the following:

scheduler.config.init_date =dhx.Date.datePart(new Date());