Skip to content

Commit 7aadfdf

Browse files
authored
Update script.js
1 parent 59980d1 commit 7aadfdf

File tree

1 file changed

+3
-3
lines changed
  • Client-Side Components/Client Scripts/Check all mandatory fields using mandatoryCheck()

1 file changed

+3
-3
lines changed

Client-Side Components/Client Scripts/Check all mandatory fields using mandatoryCheck()/script.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
function onChange(control, oldValue, newValue, isLoading, isTemplate) {
2-
if (isLoading || isTemplate || newValue === '') {
3-
return;
4-
}
2+
if (isLoading || newValue === '') {
3+
return;
4+
}
55

66
// Check if all mandatory fields are filled
77
if (!g_form.mandatoryCheck()) {

0 commit comments

Comments
 (0)