Add example text on Change Request form fields
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2022 05:43 AM
Hello Team,
I want to add some example text on the Change Request form fields which will be helpful for the users while submitting the Change Request.
I want to add some text inside the boxes displayed per the screenshot. Can anyone help me out on this?
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2024 09:26 PM
Hi,
The above script is not working in Agent Workspace view.
Please assist!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2024 10:18 PM
Hi @SNOW46
- Create below onLoad client script
- Make sure the 'isolate script' column for this script is set to false (Default is set to true to prevent DOM manipulation)
function onLoad() { //Declare the field variables that need a placeholder and get control over them var shortDesc = g_form.getControl('short_description'); var desc = g_form.getControl('description'); //Create the placeholder text(s) for the fields shortDesc.placeholder = "Give your short description here"; desc.placeholder = "Please explain in detail what your issue is"; }
Please mark reply as Helpful/Correct, if applicable. Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2024 11:10 PM