Mobile scheduler events

I’m creating page like as
dhx.ui({
view: “scheduler”,
id: “scheduler”,
save: “timeline.ota”,

});
and trying call some events like in docs.dhtmlx.com/touch/doku.php?i … e_calendar:
$$(‘scheduler’).attachEvent(“ondateselect”, function (){
console.log(123)
});

but never was happend.

For others event the same situation.
Please help

p.s. sorry for my english

Hi,

ondateselect handler should be set for Calendar view:

$$(‘scheduler’).$$(“calendar”).attachEvent(“ondateselect”, function (){
console.log(123)
});

Here is information about accessing elements of mobile scheduler:

docs.dhtmlx.com/doku.php?id=dhtm … _scheduler