SNOW-CAD Core Application Development • Set 3
SNOW-CAD Core Application Development Practice Test 3 — 15 questions with explanations. Free, no signup.
The UI Policy has a 'Reverse if false' checkbox unchecked. When will the UI Policy's actions (such as setting a field mandatory) be applied?
Refer to the exhibit.
Exhibit (UI Policy condition script on incident table):
```javascript
(function executeCondition() {
if (g_user.hasRole('admin') && g_user.isInteractive()) {
return true;
}
return false;
})();
```