Sencha Touch 2 の TabPanel に通常の Sencha ボタンを追加したい
煎茶フィドルhttp://www.senchafiddle.com/#tRd76
コード:
//define the application
Ext.application({
launch: function() {
addTabPanel();
}
});
function addTabPanel(){
Ext.Viewport.add({
xtype: 'tabpanel',
tabBarPosition: 'bottom',
fullscreen: true,
tabBar:{
dockedItems:[{
xtype: 'button',
ui: 'round',
text: 'Button1',
dock: 'left',
handler: function(){
alert('Botton1 Working Now');
}
}]
},
items:[
{
title: 'All Market',
iconCls: 'home',
html: 'Home',
},
{
title: 'Favorite',
iconCls: 'favorites',
html:'Favorite',
itemTpl: '{mwRow}',
}
]
});
}
Button1 を TabPanel に追加すると、ボタンが表示されません。Button1 が表示されないのはなぜですか?
助けてください?