Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2024 02:34 AM
Hello, Guys
I'd like to know that, how I would get the value if the id of an element in HTML is the style of variables.
Solved! Go to Solution.
1 ACCEPTED SOLUTION

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2024 06:50 AM
Hi,
Here is an example:
/*
XML & Jelly Example from:
UI Action: Bulk Edit
UI Page:
sn_vul_BulkVulnUpdateDialog
*/
//UI Page
<g:ui_reference name="vi_assignment_group" id="vi_assignment_group" table="sys_user_group"
//Client Script may process the value of the data ("vi_assignment_group")
//Processing Script
var assignmentGroup = request.getParameter("vi_assignment_group") || "";
2 REPLIES 2

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2024 06:50 AM
Hi,
Here is an example:
/*
XML & Jelly Example from:
UI Action: Bulk Edit
UI Page:
sn_vul_BulkVulnUpdateDialog
*/
//UI Page
<g:ui_reference name="vi_assignment_group" id="vi_assignment_group" table="sys_user_group"
//Client Script may process the value of the data ("vi_assignment_group")
//Processing Script
var assignmentGroup = request.getParameter("vi_assignment_group") || "";
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2024 06:02 PM - edited 01-29-2024 11:55 PM
@Chris McDevitt Thanks for your reply!
I have used the request.getParameter() to get the values successfully!