Informatica ActiveVOS
- Informatica ActiveVOS 9.2.4.6
- All Products
// Note: this method is auto-generated. var _setupValidation = function() { // bind form to the plugin $("#loanForm$ID").validate(); // limit loan amount input field between 1000 and 5000. // (see jQuery Validation Plugin for docs). $("#loanAmount$ID").rules("add", {maxinclusive: 5000, mininclusive: 1000}); // other validation rules .... }
// Note: this method is auto-generated. var avcform_validate = function() { // let the jQuery form validation plugin first do the basic validation if(!$("#loanForm$ID").validate().form()) { // return false if not valid return false; } // do further validation if needed (e.g. if A is selected then B and C is required). // return t/f return true; }