I have a jqxGrid which launches a jQueryMobile popup for editing the row content when a “rowdoubleclick” event is received.
It appears like an additional click of some sort is being received after the double click (though I’ve checked explicitly for click, rowclick, and rowdoubleclick) to change the focus. I’m presuming this is what is happening because if the double click occurs outside the area where the popup is painted, then it is immediately dismissed. Double clicking where the popup appears means it is not dismissed and double clicking outside the popup paint area while the popup has data-dismissible=”false” also prevents it from being automatically dismissed.
It’s as if a click is being received at the doubleclick location after the doubleclick is processed?
Events I have traced appear in the following order:
- rowclick
- click
- rowclick
- rowdoubleclick
So I don’t know what event occurs after this to cause the popup to be dismissed. Any ideas?
THANKS
Peter