-
12 Nov 2012 3:00 PM #1
Unanswered: Add button to TabBar in TabPanel with dockedItems not working
Unanswered: Add button to TabBar in TabPanel with dockedItems not working
Hello.
I am trying to get a tabpanel to show up with three different panels and one dockedItems button on the tabbar but I am having trouble with it. My code is as follows:
For some reason the dockeditem button seems to be taking the place of the first tab panel button as seen in the screenshot attached. Any ideas as to why this is happening?Code:var demoTabPanel = new Ext.tab.Panel({ fullscreen: true, tabBar:{ dockedItems:[ { xtype: 'button', ui: 'round', text: 'Round', dock: 'right' } ] }, items: [ { title: 'Tab 1', html: '1' }, { title: 'Tab 2', html: '2' }, { title: 'Tab 3', html: '3' }] });
tabPanel.png
Thanks,
Jonathan
-
14 Nov 2012 6:19 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,714
- Vote Rating
- 438
- Answers
- 3113
dockedItems is not supported in ST2.
Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.


Reply With Quote