Double-click does not work on iPad

I have a problem related to the “double-click” event which does not work properly on iPad but it works other mobile devices.

The code that I have is:

[code]scheduler.attachEvent(“onClick”,function (event_id, native_event_object){
var date_selected = scheduler.getActionData(native_event_object).date;

// ...

return true;

}

scheduler.attachEvent(“onDblClick”,function (event_id, native_event_object){
var date_selected = scheduler.getActionData(native_event_object).date;

/* I perform checks based on the date and then I create a new event with "scheduler.addEventNow(date_selected)". */

return false;

}[/code]

Could you please help me?
Thanks in advance.

Which version of iOS you are using ?
Is it throws some js error, or just an incorrect target date ?

Yes, apparently the problem is that the event is getting an incorrect target date (by double-click). This error has only happened to me in the following mobile devices: iPhone 5 IOS 7.0.4, Samsung Galaxy S3, Android GT I9300.

P.S. Excuse me for my late response.