我需要在实际执行click事件之前询问用户(带有标准的Ext.MessageBox.confirm对话框),因为在href配置中设置了服务器的php场景。
当我点击按钮时ExtJS首先调用了php场景(在其他浏览器的窗口中 - 默认情况下),并且只有在显示MessageBox对话框之后。 但是我首先要问用户并且只有在他说'是'时才调用php方案。
答案 0 :(得分:0)
function yoursMethod([config])
{
// call you sripts there
// check what a button you pressed and then call scenario
// you can see [config] in documentation http://docs.sencha.com/ext-js/4-1/#!/api/Ext.window.MessageBox-method-show
}
Ext.MessageBox.confirm({
title: ' Sample ',
msg: 'Message',
fn: yoursMethod
});