Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-12-2020 05:39 AM
Hi Rick,
You should validate this via OnChange Client Script. Please refer below code:
function onChange(control, oldValue, newValue, isLoading, isTemplate) {
if (isLoading || newValue === '') {
return;
}
if (newValue % 8 != 0) { // If the value is not multiple of the number 8;
alert("PASS ALERT MESSAGE HERE");
g_form.clearValue('PASS FIELD COLUMN NAME HERE');
}
//Type appropriate comment here, and begin script below
}
-Pradeep Sharma