PDA

View Full Version : long press?



dubberlydesign
27 Oct 2010, 5:04 PM
Is there a way to specify a long press in sencha? I'd like to create a popup when a user presses and holds an image.

davidkaneda
28 Oct 2010, 10:10 AM
There is a 'taphold' event you can bind to, which continuously sends the amount of time it's been pressed.

dubberlydesign
28 Oct 2010, 10:54 AM
I tried to bind it like this:

_this.$this.bind('taphold', _this.mouseDownHandler);

which didnt work. I heard that you can only use touch events on "containers". Is that true?

Does anyone have an example of a taphold working?