1
我想在選項卡欄中隱藏ThankYou項目,直到使用提交聯繫我們表單。提交表單後,我希望顯示ThankYou項目,並隱藏其他三項。這可能嗎?這裏是我的代碼:Sencha Touch - 在TabBar中隱藏項目
Mobile.views.ViewPort = Ext.extend(Ext.TabPanel, {
fullscreen: true,
layout: 'card',
tabBar: {
layout: { pack: 'center' }
},
items: [
{
xtype: 'Landing'
},
{
xtype: 'AboutUs'
},
{
xtype: 'ContactUs'
},
{
id: 'ThankYou',
name: 'ThankYou',
xtype: 'ThankYou',
hidden: true //Not working
}
]
});
謝謝,這個偉大的工程!其他要求是否容易?此解決方案將ThankYou添加到TabBar,但我仍然需要刪除登陸,AboutUs和ContactUs。 –
因爲您讓我指出正確的方向,所以我會將其標記爲答案。謝謝你的幫助。這是去除其他項目的解決方案:'Mobile.views.ViewPort.remove(「Landing」);' –