const allValid = [...this.template.querySelectorAll('lightning-input')].reduce((validSoFar, inputField) => {
inputField.reportValidity();
return validSoFar && inputField.checkValidity();
}, true);
if (allValid) {
console.log('All fields are valid');
} else {
console.log('Please complete all required fields.');
}
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter