0

I'm working on a Calender scheduler using dhtmlx in phonegap.I managed to get the events from my mysql database but unable to create new events because the double click event in a touch screen enable to zoom-in or zoom-out. Please help me in this.how to disable this zoom-in and zoom-out and enable create event.

4

3 回答 3

0

您是否尝试过设置视口元标记?如果没有,试试这个:

<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
于 2013-12-16T20:28:53.300 回答
0

dhtmlx 调度程序有一个特殊的触摸版本 - http://dhtmlx.com/docs/products/dhtmlxScheduler/sample_mobile.shtml

于 2013-12-16T10:51:15.023 回答
0

当在 PhoneGap 中渲染时,调度程序可能无法识别触摸设备。

尝试手动启用触控支持模式

scheduler.config.touch = "force";

http://docs.dhtmlx.com/scheduler/api__scheduler_touch_config.html

于 2014-01-21T15:37:49.340 回答