我有一个Extjs表单,它需要一些验证,比如当我输入字母而不是数字时,它应该在我提交之前提醒我。在我输入一个数字之前直接进行。我该如何建立?
答案 0 :(得分:5)
试试这个:
onFormSubmit: function(btn, event) {
var me = this,
form = btn.up('form').getForm();
if(form.isValid()) {
//submit form
}
else alert('Invalid form');
}
答案 1 :(得分:1)
buttons: [{
text: "Continue",
margin: "0 5 10 0",
handler: function () {
var getForm = this.up("form").getForm();
if (getForm.isValid()) {
code her if form is valid
} else {
Ext.MessageBox.show({
title: "ERROR-A1001",
msg: "Please fill the required fields correctly.",
buttons: Ext.MessageBox.OK,
icon: Ext.MessageBox.WARNING
});
}
}
}]