show event view

How can i programatically call the event details view?
I tried something like:

$$(“scheduler”).setCursor(eventId);
var editBtnId = $$(“scheduler”).$$(“edit”).config.id;
$$(“scheduler”).callEvent(“onItemClick”, [editBtnId]);

but that’s not the desired output.

Hello,

You can set cursor to the event and call show method for the event view:

$$("scheduler").setCursor(eventId);
$$("scheduler").$$("event").show();