Hello,
This is possible with, for example, a little javascript.
With jQuery:
jQuery(function() {
jQuery("#my-element").click(function(e) {
var report = decoMistape.getSelectionData();
if(report)
decoMistape.showDialog(report);
});
});
Plain javascript
document.getElementById('my-element').addEventListener( 'click', function(e) {
var report = decoMistape.getSelectionData();
if(report)
decoMistape.showDialog(report);
});
You could also with a simulated key press and using dispatchEvent.
After you see the scenario to indicate to the user on mobile.
-
This reply was modified 4 years, 10 months ago by papayo.
-
This reply was modified 4 years, 10 months ago by papayo.