You can use getEvents function to get list of events which happen at particular time frame:
var evs = scheduler.getEvents(new Date(2011,05,16), new Date(2011,05,17));
After that you can loop through array, create necessary html elements and append them to layout.
Also note that this function knows about recurring events and they will be returned too.