How to rename the label of a dot walk field in the form
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-18-2023 02:56 AM
I want to bring location field from the caller field dot walking into my incident form. As default it is giving me the column label as the Location(which is there in the user table). I need to relabel it for incident table alone as primary location. I tried with label part for the field, but as it is a dot walk field it is not making the changes. Is there any way tio achieve it
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-18-2023 07:16 AM
@roshini1 You can create on load client script to set the label of dot walk field
You can try the below code.
g_form.setLabelOf('caller_id.location','Primary Location');
Regards,
RJ