There seems to be no tap event for Ext.carousel.Carousel. How can I make a carousel respond to tap events? (tap, itemtap etc.)
相关问题
- Sencha Touch 2: 'specified Store cannot be fou
- iPad-like pop-over in Sencha touch
- Vbox layout issue in a tab panel
- items not loading in sencha touch 2
- SASS/compass path in config.rb causing problem on
相关文章
- Sencha Touch in WebView
- Sencha Touch Ext.navigation.View pop to root
- Found extra positional argument package error on S
- How to move from one view to another view using vi
- Sencha Touch/HTML5 Swipe event/effect from left to
- Different grid layout for portrait and Landscape i
- Button inside of an input field Sencha Touch 2.0
- Combining Sencha Touch with jQuery
Tap events do not work on the components directly. Instead they work fine on component's element. So, for your case you can use it like this:
In your controller's "control",
You can use delegate this way if you want to capture tap event on certain types of element only:
Hope this help.