gpt4 book ai didi

javascript - 为什么即使使用 vtype 的电子邮件验证失败,提交按钮在 extjs 中仍然有效?

转载 作者:行者123 更新时间:2023-11-30 17:05:48 24 4
gpt4 key购买 nike

下面是带有电子邮箱的窗口面板的 extjs 代码,我使用 vtype:email 来检查验证。该框显示无效电子邮件的错误,但提交按钮仍然有效。如何在用户单击按钮时抛出无效电子邮件错误?

    {
vtype:'email',
name: 'email',
fieldLabel: 'Email',
allowBlank:false,
id: 'inviteEmail'
},{
xtype: 'button',
text: 'Send',
id: 'invitebuttonid',

handler: function(btn){
var email = Ext.getCmp('inviteEmail').getValue();
var box = Ext.MessageBox.wait('Sending The Invitation..', 'Inviting User')
Ext.Ajax.request({
url: 'url',
params:{
email: email
},
timeout: 300000,
method: 'POST',
success: function(response, opts){
var result = Ext.decode(response.responseText);
if (result.success === true) {
Ext.example.msg('Success', result.message);
box.hide();
}
else {
Ext.Msg.alert('Failed', result.message);
}
},
failure: function(response, opts){
var result = Ext.decode(response.responseText);
Ext.Msg.alert('Failed');

}
});
}

最佳答案

要根据表单状态自动激活或停用按钮,您需要添加配置 formBind: true

{
xtype: 'button',
text: 'Send',
id: 'invitebuttonid',
formBind: true,
...
}

关于javascript - 为什么即使使用 vtype 的电子邮件验证失败,提交按钮在 extjs 中仍然有效?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28072256/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com