Changing label for a field on workspace
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-11-2023 12:29 PM
I want to change the label of field displayed on Workspace. I want Opened for field to have a different label just on the workspace. Is this possible?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-11-2023 06:13 PM
Hi @samadam ,
You can change the label using a client script for a specific view. Try using the following onLoad client script.
function onLoad() {
//Type appropriate comment here, and begin script below
var view = getView();
if (view == 'workspace){//your view name to change the label
g_form.setLabelOf('opened_for', 'Your Label');
}
}
Thanks,
Anvesh
Anvesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-09-2024 07:58 AM
I have the same requirement and tried this code, but this code works only for the view in classic UI. Workspace still shows the old name. any suggestion?