touch

enables/disables the touch support in the scheduler

boolean| string touch;

Example

scheduler.config.touch = "force";
...
scheduler.init('scheduler_here',new Date(2013,3,10),"week");


Default value:

true

Related samples

Details

As a string, the parameter can take the only value - 'force'.


So, there are 3 possible values that the parameter can take:

  • true - the scheduler tries to detect the touch device by analyzing the user-agent string of the browser and, if a touch device is detected, enables the touch support.
  • 'force' - enables the persistent touch support, no matter what kind of device is used.
  • false - disables the touch support.
See also
Back to top