码迷,mamicode.com
首页 > 编程语言 > 详细

Javascript - ExtJs - FormPanel组件

时间:2017-07-02 22:07:51      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:form   ret   错误   sed   app   自动   信息   配置   分享   

自定义验证

配置字段的vtype属性可以自动开启验证,你也可以替换掉Ext内置的验证程序,替换方式如下所示。

技术分享
//自定义验证
Ext.apply(Ext.form.VTypes, {
    otherTest1: function () { }, otherText: "",
    otherTest2: function () { }, otherText: ""
});

//替换之后再配置字段时可使用vtype:otherTest指向验证程序
View Code
技术分享
//自定义验证
Ext.apply(Ext.form.VTypes, {
    testEmail: function (val, field) {
        var re = /^(\w)+(\.\w+)*@(\w)+((\.\w+)+)$/;
        if (!re.test(val)) { return false; }
        return true;
    },
    //验证失败信息     
    testEmailText: ‘错误的邮箱格式‘
});

//在表单子控件里配置vtype : "testEmail"
View Code

 

Javascript - ExtJs - FormPanel组件

标签:form   ret   错误   sed   app   自动   信息   配置   分享   

原文地址:http://www.cnblogs.com/myrocknroll/p/7107319.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!