-
21 Jan 2013 8:13 PM #1
horizontal scrollable dataview's bottom docked toolbar is not visible
horizontal scrollable dataview's bottom docked toolbar is not visible
REQUIRED INFORMATION
Ext version tested:- Sencha Touch 2.1
- Chrome 24 (Windows)
- In my app, I need a horizontal scrollable dataview. So I put a dataview inside a container with config of horizontal scrollable and hbox layout. The problem is the dataview's bottom docked toolbar is not visible.
- It works in 2.0.1 but not in 2.1
- Create a container with hbox layout
- Create a dataview with a bottom docked toolbar
- The bottom-docked toolbar is visible
- The bottom-docked toolbar is missing
Code:Ext.Loader.setConfig({ enabled : true }); Ext.application({ name : ('SF' || 'SenchaFiddle'), launch : function() { Ext.create('Ext.navigation.View', { fullscreen: true, items: [ { xtype: 'container', layout: { type: 'hbox' }, scrollable: 'horizontal', items: [ { xtype: 'dataview', width: 1200, //flex: 1, store: { fields: ['name', 'age'], data: [ {name: 'Jamie', age: 100}, {name: 'Rob', age: 21}, {name: 'Tommy', age: 24}, {name: 'Jacky', age: 24}, {name: 'Ed', age: 26} ] }, itemTpl: '<div>{name} is {age} years old</div>', items: [ { xtype: 'toolbar', docked: 'top', html: 'top bar is here top bar is here' }, { xtype: 'toolbar', docked: 'bottom', html: 'bottom bar is here' } ] } ] } ] }); } });
HELPFUL INFORMATION
See this URL for live test case: http://new.senchafiddle.com/#/ijE2y/
Debugging already done:- none
- not provided
- only default
- Windows 7
-
22 Jan 2013 7:16 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,656
- Vote Rating
- 435
Thanks for the report! I have opened a bug in our bug tracker.
-
29 Jan 2013 12:37 AM #3
Hi, any progress?
We just couldn't wait.
Or we have to revert to 2.0.1

Actually, 2.1 is not that stable as expected.
A little disappointed.
You found a bug! We've classified it as
TOUCH-3926
.
We encourage you to continue the discussion and to find an acceptable workaround while we work on a permanent fix.


Reply With Quote