- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2024 12:01 AM
Hi Team ,
We have a requirement that when ever we are going to resolve the incident . In the Resolution Notes ' Below steps were followed to resolve the incident: ' This text has to be displayed has a watermark .
NOTE - Before Incident is submit , In the Resolution notes is should show
can any one please provide any solution for this .
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2024 12:28 AM - edited 10-09-2024 12:28 AM
Hi @nameisnani
You can try below client script
var field = g_form.getControl('description'); //instead of description you can use resolution notes field
field.placeholder = "Test Placeholder"; //instead of "Test Placeholder" you can use text that you want to show
Please mark it helpful if it helps you
Thanks & Regards
Sejal Chavan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2024 12:28 AM - edited 10-09-2024 12:28 AM
Hi @nameisnani
You can try below client script
var field = g_form.getControl('description'); //instead of description you can use resolution notes field
field.placeholder = "Test Placeholder"; //instead of "Test Placeholder" you can use text that you want to show
Please mark it helpful if it helps you
Thanks & Regards
Sejal Chavan