Question 1mediummultiple choice
Read the full NAT/PAT explanation →SNOW-CAD Designing interfaces and user experiences • Complete Question Bank
Complete SNOW-CAD Designing interfaces and user experiences question bank — all 0 questions with answers and detailed explanations.
Refer to the exhibit.
// UI Script: myCustomUIScript
function onLoad() {
var priority = g_form.getValue('priority');
if (priority == '1') {
g_form.setValue('urgency', '1');
g_form.setValue('impact', '1');
}
}
// Client Script: onChange - priority
function onChange(control, oldValue, newValue, isLoading) {
if (newValue == '1') {
g_form.setValue('urgency', '1');
g_form.setValue('impact', '1');
}
}Drag steps to the numbered slots on the right, or tap a step then tap a slot.
Drag a concept onto its matching description — or click a concept then click the description.
Sends email based on record conditions
Sends text message
Sends message to Slack channel
Sends alert to mobile app
Makes automated phone call
// Widget server script
data.items = [];
var gr = new GlideRecord('incident');
gr.query();
while(gr.next()) {
data.items.push(gr.getRow());
}{
"name": "custom-header",
"sections": [{
"id": "header",
"fields": [{
"id": "title",
"type": "string",
"default": "Welcome"
}]
}],
"states": [
{ "id": "default", "condition": "" }
]
}// Widget Client Controller
function($scope, $http) {
$http.get('/api/now/table/incident?sysparm_limit=10').then(function(response){
$scope.data = response.data.result;
});
}// UI Policy Script
function onCondition() {
if (g_form.getValue('urgent') == 'true') {
g_form.setMandatory('reason', true);
}
}{
"type": "filter",
"condition": "assignment_group=IT Support^state=In Progress",
"operator": "AND",
}<uipolicy name="hide_field" table="incident" condition="current.state==1" order="10" active="true"> <uipolicyaction name="action1" action="setVisible" fieldname="assigned_to" visible="false"/> </uipolicy>