我定义了一个验证,它控制id是否唯一以绑定按钮。 适用于内置验证,但它不会绑定我自己的验证。
这是我尝试过的:
查看 - 表单面板:
Ext.define(appName + '.view.user.UserForm', {
extend: 'Ext.form.Panel',
requires: [appName + '.view.language.LanguageCombo'],
alias: 'widget.userform',
// title : 'User Form',
iconCls: 'icon-form',
frame: true,
padding: '5 5 0 5',
border: true,
buttonAlign: 'right',
width: '100%',
// height : 200,
monitorValid: true,
bodyPadding: 10,
fieldDefaults: {
labelAlign: 'left',
labelWidth: 110,
anchor: '98%',
allowBlank: false,
selectOnFocus: true,
msgTarget: 'side'
},
initComponent: function () {
var me = this;
this.title = bundle.getMsg('userform.title');
this.items = [{
xtype: 'numberfield',
minValue: 1,
fieldLabel: bundle.getMsg('userform.field.recordId'),
name: 'recordId',
itemId: 'recordId'
}, {
];
this.btnReset = Ext.create('Ext.ux.button.ResetButton', {
handler: function (btn) {
me.getForm().reset();
}
});
this.btnSubmit = Ext.create('Ext.ux.button.SaveButton', {
disabled: true,
formBind: true
});
this.buttons = [me.btnReset, me.btnSubmit];
this.callParent(arguments);
}
});
控制器方法:
var form = this.getUserForm();
if (field.getValue() && field.getValue() != '') {
Ext.Ajax.request({
url: 'user/chkRecordIdUnique.ajax',
method: 'POST',
params: {
recordId: field.getValue()
},
success: function (response, options) {
var res = Ext.decode(response.responseText);
if (!res.success) {
field.markInvalid(bundle.getMsg('record.taken'));
form.getForm().markInvalid(bundle.getMsg('record.taken'));
}
}
});
}
答案 0 :(得分:1)
根据文档,markInvalid
实际上并未改变字段的有效性。它只是应用视觉样式,就好像字段有错误一样。并且没有要设置的isValid
属性。所有有效性均由立即调用isValid
方法确定。
目前,Ext JS表单本身不支持异步验证。它假定所有验证都在客户端完成,或者服务器将执行验证。如果要在启用保存按钮之前执行Ajax调用以确定表单是否有效,我建议您使用成功回调来创建自己的验证方法。如果Ajax调用成功并且表单的其余部分有效,则手动启用保存按钮。然后在表单更改时,您可以再次禁用保存按钮。
旁注:width
应为数字,而不是百分比。