search envelope-o feed check
Home Unanswered Active Tags New Question
user comment-o

DayPilotBubble not showing on Touch/Mobile devices (iOS/Android)

Asked by Piet Eckhart
7 years ago.

Hi,

9 months ago i posted the folowing bug report:
http://forums.daypilot.org/Topic.aspx/3250/daypilotbubble-not-showing-on-touch-mobile-devices-ios-andr

Because it's older than 6 months it automatically closed.

I was still waiting for Dan to answer my question and hopefully solve our issue.

Kind Regards,

Piet Eckhart

Answer posted by Dan Letecky [DayPilot]
7 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 months old and has been closed. Please create a new question if you have anything to add.