Skip to content

Commit 1e9c976

Browse files
authored
Add files via upload
Enhanced UI Page Description I've developed a UI page (or custom form) designed to streamline the process of granting user access. When a user clicks a button, a form appears that collects the necessary information for the access request. Form Elements: Multiline Text Area: For the user to enter a detailed justification or description of the access needed. User Picker (or Select User field): To specify the individual who requires the access. Category Selector: A dropdown or selection field to define the type or level of access being requested. Submission Action: When the user submits the form, a new record is automatically created to process and track the access grant.
1 parent eda3e1a commit 1e9c976

File tree

3 files changed

+45
-0
lines changed

3 files changed

+45
-0
lines changed
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
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:ui_form>
4+
<table>
5+
<tr>
6+
<td style="width:25%">
7+
<g:form_label>
8+
Additional note:
9+
</g:form_label>
10+
</td>
11+
<td style="width:60%">
12+
<input type="text" aria-label="Print your name" name="notes" id="notes" maxlength="25"/>
13+
</td>
14+
</tr>
15+
<tr>
16+
<td style="width:25%">
17+
<g:form_label>
18+
Manager :
19+
</g:form_label>
20+
</td>
21+
<td style="width:60%">
22+
<g:ui_reference name="user_ref" id="user_ref" query="user_nameSTARTSWITHA" table="sys_user"/>
23+
</td>
24+
</tr>
25+
<tr>
26+
<td style="width:25%">
27+
<g:form_label>
28+
Confirm category :
29+
</g:form_label>
30+
</td>
31+
<td style="width:60%">
32+
<g:ui_choicelist name="my_category" id="my_category" table="incident" mandatory="true"
33+
field="category" query="active=true"/>
34+
</td>
35+
</tr>
36+
<tr>
37+
<td>
38+
<g:dialog_buttons_ok_cancel ok_id="submitData" ok="return continueOK()" ok_type="button"
39+
ok_text="${gs.getMessage('Okay')}" ok_style_class="btn btn-primary" cancel_type="button" cancel_id="cancelData"
40+
cancel_style_class="btn-btn-default" cancel="return continueCancel()"/>
41+
</td>
42+
</tr>
43+
</table>
44+
</g:ui_form>
45+
</j:jelly>

Client-Side Components/UI Pages/Custom Alert using UI Page/page_client script.txt

Whitespace-only changes.

Client-Side Components/UI Pages/Custom Alert using UI Page/server_scrip_of_page.txt

Whitespace-only changes.

0 commit comments

Comments
 (0)