我有一个 Extjs 表单,它需要一些验证,比如当我输入字母而不是数字时,它应该在我提交之前提醒我。直接在我在字段中输入一个数字之前。我怎样才能建立它?
问问题
17879 次
2 回答
5
尝试这个:
onFormSubmit: function(btn, event) {
var me = this,
form = btn.up('form').getForm();
if(form.isValid()) {
//submit form
}
else alert('Invalid form');
}
于 2013-06-24T09:11:48.690 回答
2
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
});
}
}
}]
于 2017-10-11T07:31:12.637 回答