Chaitanya ILCR
Giga Patron

Hi @indrajeetma ,

 

3 ways you can achieve this

create an onLoad Client script

ChaitanyaILCR_3-1753083591532.png

function onLoad() {
    g_form.setLabelOf('work_notes','Place holder work notes and label');
    g_form.setLabelOf('comments','Place holder comments and label');
}

 

this would also update the label like

ChaitanyaILCR_4-1753083675555.png

 

OR

 

create an onLoad client script with Isolate script as false

 

ChaitanyaILCR_0-1753083131861.png

function onLoad() {
    setTimeout(function() {
        $('activity-stream-work_notes-textarea').placeholder = 'put work notes place holder text here'; // update with your place holder text
        $('activity-stream-comments-textarea').placeholder = 'put comments place holder text here'; // update with your place holder text
		
    }, 1000);
}

update the placeholder text as per you requirement

 

other way is by updating the field label

 

go to the work_notes dictionary and create a new Label record with incident table name and element is work_notes (follow the same for comments)

ChaitanyaILCR_1-1753083285333.png

ChaitanyaILCR_2-1753083372549.png

 

whatever you set as label it will reflect in the place 

 

 

 

Please mark my answer as helpful/correct if it resolves your query.

Regards,
Chaitanya