我的Sencha触摸应用程序中需要一个删除图标,当它被点击时,我应该显示确认消息。这就是我所需要的。但是,它被带到了一个新页面。有没有办法解决这个问题? / p>
答案 0 :(得分:0)
你为什么写xtype: 'formpanel'
?它应该是xtype:'button'
instea。这对我有用:
{
title: 'Delete',
iconCls: 'delete',
cls: 'home',
xtype:'button' ,
handler: function()
{
var del=confirm('Are you sure');
if(del) {
console.log('confirm');
} ;
},
},