Reslotions notes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-31-2024 11:03 PM
Hi Team ,
I have an requirement on the incident table that 'when ever we are resolving the incident in reslotion notes , placeholder or watermark should display .
for this, I have written an onLoad client script on the incident table .
But the problem is here is , it is also reflecting on change , problem table as well .
can anyone please provide me the updated script to avoid this issue .
It should only work on incident table .
Thanks in advance .
can anyone please provide me the solution for this . \
please attach screenshots fpr better understanding
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-31-2024 11:32 PM
Hi @nameisnani ,
Can you try by adding,
if(g_form.getTableName() == 'incident')
then do the following.
If the above information helps you, Kindly mark it as Helpful and Accept the solution.
Regards,
Najmuddin.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-31-2024 11:33 PM
@Najmuddin Mohd pleaase prvide complete script
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-31-2024 11:37 PM
function onLoad(){
if(g_form.getTableName() == 'incident'){
var field = g_form.getControl('close_notes');
field.placeholder = 'Below steps were followed to solve the Incident';
}
Regards,
Najmuddin.