- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-10-2024 12:39 AM
Hi everyone,
i have variable called description on my form. i need to hide the label how to do it please suggest. i am attaching the screenshot below please check for the reference.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-10-2024 01:21 AM
Please make use of the below line of code in an On-Load Client Script in that case :
g_form.setLabelOf('description','');
Thanks and Regards
Amit Verma
Please mark this response as correct and helpful if it assisted you with your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-10-2024 12:57 AM
Hi @t venkatesh1 ,
I tried your problem on my PDI and I tried to solve that.
Please create a "OnLoad" Client Script and add below code
function onLoad() {
g_form.setLabelOf('short_description','');
}
Here's the output
Please mark helpful and correct if it works for you
Thanks
Sarthak