嗨,我是一个更新的extjs技术..请帮助我理解这个概念。
我添加了一个文本字段。我需要在选项卡失焦时验证值
blur: function () {
if (_____> 7000) {
Ext.Msg.alert('Alert', 'Sorry, You Exceeded the Limit');
}
},
我不知道如何从textfield获取值。我尝试了一些东西,但它没有用。
答案 0 :(得分:0)
模糊事件将获得两个输入参数。在第一个参数是你想要的领域。
blur: function (field) {
if (field.getValue() > 7000) {
Ext.Msg.alert('Alert', 'Sorry, You Exceeded the Limit');
}
},
我建议使用数字字段表示数字。