I'm trying to validate 'vatregnumber' field on the Vendor record, Here is my sample code. It works in Mozilla but in Chrome it messages infinite loop.
function clientValidateField(type, name, linenum) {
if (name === 'vatregnumber') {
var isValid = validateTaxNum(); // a function returns boolean. If it returns false it gives an alert message. //
return isValid;
}
return true;
}
I agree that this similar question has been asked, but is there any way to slove these kind of troubles