-
21 Jan 2013 1:56 PM #1
Chrome 2.2.0 alpha Cannot tap ToolBar Buttons
Chrome 2.2.0 alpha Cannot tap ToolBar Buttons
Sencha Touch 2.2.0 alpha
Chrome 24.0.1312.52 m
Windows 7 64 bit
The CSS for the ToolBar Title is set to cover the entire width of the toolbar. Any button on the toolbar cannot be tapped because the tap event is captured by the Title.
In the example below, if you tap at the very left edge of the Button, the tap event will be picked up. Anywhere else in the Button does nothing.
Any quick patch for this would be appreciated, since it is blocking access to the rest of the application.
Code:Ext.create('Ext.form.Panel', { fullscreen: true, items: [ { xtype: 'toolbar', docked: 'top', title: 'My Toolbar', items: [ { xtype: 'button', text: 'Button', listeners: { tap: function (btn) { alert(btn.getText()); } } } ] } ] });
-
22 Jan 2013 7:13 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 34,121
- Vote Rating
- 453
Thanks for the report! I have opened a bug in our bug tracker.
-
22 Jan 2013 11:37 AM #3Sencha - Sencha Touch Dev Team
- Join Date
- Mar 2007
- Location
- Redwood City, California
- Posts
- 3,659
- Vote Rating
- 14
Fixed for the next 2.2 release. Thank you!
Success! Looks like we've fixed this one. According to our records the fix was applied for
TOUCH-3925
in
2.2.0-b1.


Reply With Quote