- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2023 08:50 PM
I would like to know how to change the title of variable editor.
I changed all the same names in the translation table, but it did not change.
Best Regards
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2023 08:55 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2023 10:59 PM
Hi @k_47
Let's try approaches below to change the title of variable editor.
#Message
Define a record in the Message [sys_ui_message] table, then set your own title in the Message field.
NOTE: Variable keyword in other places could be affected as well.
#Client Script (Isolate script unchecked)
Create On Load Client Script, and you can get the element to re-define the title.
document.getElementsByClassName("veditor_header")[0].innerHTML = "Request Details";
NOTE: It will have delay to change the title when the form load.
#Formatter
Modify the formatter Variable Editor in the Requested item table.
Name: Variable Editor
URL: https://<instance_name>/sys_ui_formatter.do?sys_id=86863af2c611229101b57dcc29ac7666
The formatter is calling this UI Macro "com_glideapp_servicecatalog_veditor". You can put this gem below into the jelly script to update the title.
<script type="text/javascript">
document.getElementsByClassName("veditor_header")[0].innerHTML = "Request Details";
</script>
Cheers,
Tai Vu

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2023 08:55 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2023 10:59 PM
Hi @k_47
Let's try approaches below to change the title of variable editor.
#Message
Define a record in the Message [sys_ui_message] table, then set your own title in the Message field.
NOTE: Variable keyword in other places could be affected as well.
#Client Script (Isolate script unchecked)
Create On Load Client Script, and you can get the element to re-define the title.
document.getElementsByClassName("veditor_header")[0].innerHTML = "Request Details";
NOTE: It will have delay to change the title when the form load.
#Formatter
Modify the formatter Variable Editor in the Requested item table.
Name: Variable Editor
URL: https://<instance_name>/sys_ui_formatter.do?sys_id=86863af2c611229101b57dcc29ac7666
The formatter is calling this UI Macro "com_glideapp_servicecatalog_veditor". You can put this gem below into the jelly script to update the title.
<script type="text/javascript">
document.getElementsByClassName("veditor_header")[0].innerHTML = "Request Details";
</script>
Cheers,
Tai Vu