Javascript-extjs-formpanel components

Source: Internet
Author: User

Custom validation

The VType property of the configuration field can be automatically turned on for verification, and you can replace the ext built-in validator, as shown below.

// Custom Validation ext.apply (Ext.form.VTypes, {    function () {}, Othertext: "",    function () { }, Othertext: ""}); // use Vtype:othertest to point to validators when you replace and then configure Fields
View Code
//Custom Validationext.apply (Ext.form.VTypes, {testemail:function(val, field) {varRe =/^ (\w) + (\.\w+) *@ (\w) + ((\.\w+) +) $/; if(!re.test (Val)) {return false; } return true; },    //Validation Failure InformationTestemailtext: ' Wrong mailbox format '});//Configure VType in the table list control: "Testemail"
View Code

Javascript-extjs-formpanel components

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.