Hi! Is there anything like search for event? Let say, I would like to show in calendar event based on ID or some other unique value. So after button is pressed it will automatically "jump" to that week/month.
There is an API to find events using the event id:
var id = "123"; var e = dp.events.find(id);
Then you will be able to focus it using scrolling methods:
dp.scrollTo(e.start()); dp.scrollToResource(e.resource());