Skip to content

Commit ed72117

Browse files
authored
Create resolve_incident_uipage.html
1 parent 24b87b6 commit ed72117

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<j:jelly trim="false" xmlns:j="jelly:core" xmlns:g="glide" xmlns:j2="null" xmlns:g2="null">
3+
<g:evaluate var="jvar_sys_id" expression="RP.getWindowProperties().get('sysparm_record_id')" />
4+
<div>
5+
<p>
6+
<label for="resolution_reason">Enter the Rejection Reason</label>
7+
<textarea id="resolution_reason" name="resolution_reason" class="form-control" rows="4" cols="80"></textarea>
8+
</p>
9+
<p>
10+
<label for="resolution_code">Select the Resolution Code</label>
11+
<select id="resolution_code" name="resolution_code" class="form-control">
12+
<option value="No resolution provided">No resolution provided</option>
13+
<option value="Resolved by request">Resolved by request</option>
14+
<option value="Resolved by caller">Resolved by caller</option>
15+
<option value="Solution provided">Solution provided</option>
16+
<option value="Duplicate">Duplicate</option>
17+
<option value="Resolved by change">Resolved by change</option>
18+
<option value="Workaround provided">Workaround provided</option>
19+
<option value="Known error">Known error</option>
20+
<option value="Resolved by problem">Resolved by problem</option>
21+
<option value="User error">User error</option>
22+
</select>
23+
</p>
24+
<g:dialog_buttons_ok_cancel ok_text="${gs.getMessage('Submit')}" ok_title="${gs.getMessage('Submit')}" ok="return ResolveIncident('${jvar_sys_id}');" ok_style_class="btn btn-primary" cancel_text="${gs.getMessage('Cancel')}" cancel_title="${gs.getMessage('Cancel')}" cancel="return closeDialog(); disable" />
25+
</div>
26+
</j:jelly>

0 commit comments

Comments
 (0)