OnEventLoad for Mobile?

So I was planning on having a custom details page for an event, but don’t want to load that data ahead of time.

I was going to make an ajax call when the event is clicked, but ondataloading doesn’t seem to be working. I initialize with this:
dhx.ui({
container: “schedulerDiv”,
view: “scheduler”,
id: “scheduler”,
readonly: true
});

Then later load a json string in to the calendar. Inbetween the two I have tried many attach events with $$(‘scheduler’) and none seem to be working.

Is there a special event for the mobile version that I should be using?

Thanks.

You may set a hander for onAfterCursorChange event that is called when selected event gets changed:

$$(“scheduler”).attachEvent(“onAfterCursorChange”,function(id){
/your code here/
});

Awesome, thanks!