Is there a way to detect a 'doubletap' event on a container? I have a container that houses all panels my application uses, and I want to be able to act on a 'doubletap' event at any time during use. Thanks!
Assuming your container is also a Widget, I *think* (I haven't tested this) you can call addDomHandler(new DoubleClickHandler() { ... }). Or maybe addHandler(...)
Note that Sencha also has Events for double-clicking in a Cell, a Header, and a row. Grep the source code for the examples and you will find usage examples.