iPad support

Hello,

How can I make the scheduler work on an iPad?
I’m using the new 3.5 edition with the bluesky skin.

Regards,
Michiel Klaver

Hello,

Can someone give me an answer to this question?

Michiel

Hello,

Please describe what exactly doesn’t work in your case so I could suggest something.

Best regards,
Ilya

Hello Ilya,

I can’t create or edit items by tapping on it.
When I tap on an existing item I see the tooltip.

Regards,
Michiel

Hello,

Can someone give me an answer to this question?

Michiel

Hello,

Touch devices use different events from desktop. Though it tries to convert touch to click. In this case touch = mouseover, click.
What needs to be done is it add touch handlers and from them execute desired action or moving everything to normal click.

Best regards,
Ilya

Hello Ilya,

Thanks for your answer, but can you give me some example code how I should do this?

Regards,
Michiel

Hello Ilya,

Thanks for your answer, but can you give me some example code how I should do this?

Regards,
Michiel

Hello,

Sorry for the delay.

For example let’s open Lightbox on single click:

scheduler.attachEvent("onClick", function (event_id, native_event_object) { return scheduler.showLightbox(event_id); });
Kind regards,
Ilya