- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-24-2023 08:00 AM
So i have a Due date ( field on a Table) , i just want to change the Label on the form not in the table. I know thats not possible but is there a chance?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-24-2023 08:07 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-24-2023 09:32 AM - edited ‎10-24-2023 09:36 AM
Hi @Priya123
Let's try to set the Label using setLabelOf in Client Script.
Sample below.
function onLoad() { g_form.setLabelOf('short_description', 'Title of issue'); }
Let me know if it works for you.
Cheers,
Tai Vu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-24-2023 08:07 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-24-2023 09:32 AM - edited ‎10-24-2023 09:36 AM
Hi @Priya123
Let's try to set the Label using setLabelOf in Client Script.
Sample below.
function onLoad() { g_form.setLabelOf('short_description', 'Title of issue'); }
Let me know if it works for you.
Cheers,
Tai Vu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-24-2023 10:58 AM
This Works too ! Thank you @Tai Vu