0
這裏我的代碼在sencha。的具有1M四選項卡當任何標籤內容請點擊按鈕動作在標籤欄添加新的視圖dynamically.here我的代碼Dyanamically標籤內容添加問題
var wishlist = {
standardSubmit : false,
items: [
{
xtype: 'fieldset',
scope:this,
defaults: {
required: true,
labelAlign: 'left',
},
title: 'hom',
items: [
{
xtype: 'textfield',
name : 'password',
label: 'Category',
useClearIcon: true
},{
xtype: 'textfield',
name : 'password',
label: 'Location',
useClearIcon: true
}],
},
{
xtype: 'button',
text: 'Add Wish',
ui: 'confirm',
handler: function()
{
//Here when i click other view has been added in tab bar
view.setActiveItem(0, {type:'fade', direction:'left'});
view.setActiveItem({
title: 'Add Wish',
items: [wishlist]
});
});
},
}]
};
標籤欄integeration這裏代碼
var view = Ext.create('Ext.TabPanel', {
fullscreen: false,
tabBarPosition: 'bottom',
items: [{
title: 'HOME',
iconCls: 'home',
items: [{
xtype: 'toolbar',
title: 'My Items',
},wishlist]
},
{
title: 'ITEMS',
iconCls: 'star',
items: [{
xtype: 'toolbar',
title: 'Add Items',
},signinformBase]
},
{
title: 'PROFILE',
iconCls: 'user',
items: [{
xtype: 'toolbar',
title: 'MY PROFILE',
},wishlist]
},{
title: 'FRIENDS',
iconCls: 'team',
items: [{
xtype: 'toolbar',
title: 'FRIENDS',
},wishlist]
},
});
請幫我整理出來
你需要解釋你想用上面的代碼做什麼。 – Viswa
每當我點擊任何標籤視圖即將通過添加爲其他標籤...我想顯示按下相同的標籤中的視圖 – ioseve
你下面的MVC? – Viswa