Answer posted by Dan Letecky [DayPilot]
9 years ago.

Hi Piet,

The problem is that the previous behavior was not intended - it was never supposed open a cell bubble on tap.

Cell tapping selects a single cell and fires TimeRangeSelected event. You should be able to use TimeRangeSelectedJavaScript to invoke a bubble manually when needed:

<DayPilot:DayPilotScheduler
  TimeRangeSelectedHandling="JavaScript"
  TimeRangeSelectedJavaScript="if (navigator.userAgent.indexOf("Mobile") !== -1) { new DayPilot.Bubble().showHtml('bubble text')} else { /* ... */}"
/>

This question is more than 1 month old and has been closed. Please create a new question if you have anything to add.