event list by section id

How to get ids of events by section_id?

Hi,

there is no build-in method, but you can use a method like this:

function getEventsBySectionId(id){ var result = []; var evs = scheduler.getEvents(); for(var i=0; i<evs.length; i++){ if(evs[i].section_id == id) result.push(evs[i]); } return result; }

Thank you.