I am just wondering if anyone here has encounter any issue when performing action click on jqplot items.

So here I have a barchart rendered with jqplot. I binded click event on jqplot chart with

$.jqplot.eventListenerHooks.push(['jqplotClick', myClickHandler]);

And basically myClickHandler looks like this:

function myClickHandler(ev, gridpos, datapos, neighbor, plot) {
  alert('you have triggered click action');
}

With this simple jqplot implementation, this alert action will be triggered when we click on the area inside the chart, including the bar chart item. This works perfectly in any desktop browsers (IE6, 7, 8 and 9, chrome, safari).

Here is the issue I face, when I access the site using iphone/ipad, everything is rendered perfectly except the weird behavior of click action specified above.

Basically I tried to touch on any bar chart item, it didn't alert 'you have triggered click action' as if nothing happening.

So I tried to click(touch) the empty space of the chart, it does display the alert message.

Thanks.

link|improve this question
1  
This is an old post, I realize that. However, it hasn't been fixed yet, have you checked to see if the z-index of the event canvas is higher then the other canvas items? Since the all of the canvas' are at the same hierarchy level in jqplot, it's possible that the bar canvas is just rendered in front of the other, and is causing you to not get your events. – PriorityMark Dec 13 '11 at 17:46
feedback

2 Answers

I don't know about jqplot, but generally, there's much more going on in-between mousedown and click events on touch devices. There's a greater chance of "loosing" the click before the click event itself eventually fires. mousedown, or in your case 'jqplotMouseDown`, might be a better bet for you.

link|improve this answer
feedback

You should be able to sort out this problem by doing exactly as @PriorityMark suggests i.e. by setting, explicitly, the value of z-index on the jqplot-event-canvas.

The way it might be done is shown, for example, in this answer where the problem was of a similar nature. There after my initial changes, i.e. sending of the jqplot-overlayCanvas-canvas behind the jqplot-series-canvas I forgot to put the jqplot-event-canvas in front.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.