gpt4 book ai didi

javascript - ExtJs 依赖字段验证

转载 作者:可可西里 更新时间:2023-11-01 02:15:28 24 4
gpt4 key购买 nike

如何验证依赖于另一字段的一个字段?

{
xtype: 'textfield',
name: 'name2',
vtype: 'type', // how to write the validation code for this if it
// depends on the value of another field?
allowBlank: false
}

最佳答案

通过添加您自己的自定义验证器并在其中执行验证。

var field_one = new Ext.form.TextField({
name: 'field_one',
fieldLabel: 'Field one'
});

var field_two = new Ext.form.TextField({
name: 'field_two',
fieldLabel: 'Field two',
validator: function(value){
if(field_one.getValue() != value) {
return 'Error! Value not identical to field one';
} else {
return true;
}
}
});

关于javascript - ExtJs 依赖字段验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5186595/

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