- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2020 05:50 AM
I've added caller.department.name to an incident form view but on the form it displays the label as "name"
I tried to change the label using configure > form design but even though it lets me change it and save, the changes do not persist.
Is this possible to do?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2020 05:59 AM
If you just want to change the label on the form you can useg_form.setLabelOf in a client script.
Example: g_form.setLabelOf('caller_id.department', 'caller.department');

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2020 05:53 AM
Hi,
You can try using an onLoad Client Script to set the label, like so:
g_form.setLabelOf('u_cmdb_ci_invoice.u_source_erp','Source');
Please mark reply as Helpful/Correct, if applicable. Thanks!
Please consider marking my reply as Helpful and/or Accept Solution, if applicable. Thanks!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2020 06:15 AM
Hi,
Glad you found the correct answer..
Take care
Please consider marking my reply as Helpful and/or Accept Solution, if applicable. Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2020 05:59 AM
If you just want to change the label on the form you can useg_form.setLabelOf in a client script.
Example: g_form.setLabelOf('caller_id.department', 'caller.department');