Professional User: onMouseOver Event in Scheduler??

Hi Guys,

Can anyone share the implementation of onMouseOver in Scheduler.
I believe this is still need to be released but if anyone is havin a hack or implemented.
Kindly share . Thanks

I am using pro version of DHTMLX api .Kindly help.
Cheers
AmitSharma

Hello,

What you are looking for is onMouseMove event in scheduler, no need to ‘hack’ anything :slight_smile:

Best regards,
Ilya

No Ilya,

I am looking for onMouseOver event api.

i know onMouseMove is available but i am looking for onMouseOver

I have a requirement where i need to show a placeholder on hovering mouse…

Cheerio
Amit

Hello,

On what element do you want to have such event?
You can use following:

[code]dhtmlxEvent(element, event, handler);
// element - DOM element
// event - ‘mouseover’ (without on)
// handler - your function

// also note that scheduler’s rendered elements are stored in the internal variable scheduler._els
// e.g.: scheduler._els[‘dhx_cal_data’][0] - dhx_cal_data div[/code]
Hope this helps.
Best regards,
Ilya