- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2023 11:52 PM
I made custom Reference field in RITM table, and UI Action.
In UI Action, i tried to get values in RITM. but i failed.
this is my code :
And this works well :
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2023 12:31 AM - edited 06-22-2023 12:33 AM
Hi @Jaeik Lee
To get a Choicelist/DropDown list display value
For regular forms, use this:
var disp = g_form.getDisplayBox(“field_name”).value;
In the Service Catalog, you may have to use this instead:
var varDisp = g_form.getDisplayBox(g_form.resolveNameMap(“variable_name”)).value;For your reference:
Thanks!!
Ramkumar Thangaraj
Please mark this as Helpful/Correct!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2023 12:31 AM - edited 06-22-2023 12:33 AM
Hi @Jaeik Lee
To get a Choicelist/DropDown list display value
For regular forms, use this:
var disp = g_form.getDisplayBox(“field_name”).value;
In the Service Catalog, you may have to use this instead:
var varDisp = g_form.getDisplayBox(g_form.resolveNameMap(“variable_name”)).value;For your reference:
Thanks!!
Ramkumar Thangaraj
Please mark this as Helpful/Correct!!