This repository was archived by the owner on Jul 1, 2020. It is now read-only.

Description
Integer is the only (that i've noticed) validation that defaults to invalid on load while the rest are considered valid even when I have required. Whats the easiest way to make isFieldValid return false when its pristine.
edit: i commented out the if(typeof value !== undefined") statement in the validator function and added if (strValue == undefined) {isFieldValid = false;} in the bottom of the validate function. Don't know if I broke anything yet.