在這裏我已經在sencha應用程序中使用的代碼,因爲我想添加一個提醒提示輸入您的密碼!當indexpnl launch.Here代碼在啓動警報
var mainContainer = Ext.create('Ext.Panel', {
id: 'mainContainer',
layout: 'card',
width: '100%',
height: '100%',
showAnimation: {
type: 'slideIn',
direction: 'right'
},
items: [indexpnl,loginpnl,registerpnl,homepnl,viewitemspnl,forgpanel,myfriendpro,notifypanel,mapapnel,friendviewitemspnl]
});
Ext.Viewport.add({
xtype: 'panel',
items: [mainContainer]
});
警報
function alertprompt()
{
var retVal = prompt("Enter your password? ", "Password");
}
當應用程序啓動indexpnl顯示first.I要顯示與that.Where上述警告,我應該要調用的方法alertprompt()顯示在啓動?PLease幫助解決這個問題
我應該在哪裏要在主容器 – Fazil
它不工作 –
添加此監聽器......在mainContainer上或Ext.Viewport.add – Fazil