Change placeholder text of Sharepoint Fields?

Is there any way to change the placeholder text of sharepoint fields?

I'm On Premise. I've marked the placeholder-text I want to change in the following pic.

Many thanks in advance!

Hello @JonHebbe,

To change the placeholder of any field you can use this code:

fd.field('Title').placeholder = 'New Text';

And you can change the title of the custom value field using this code:

fd.field('MultipleChoice').customValueTitle = 'New Title';

Don't forget to add the code under spRendered event handler like this:


fd.spRendered(function() {
	fd.field('Title').placeholder = 'New Text';	
	fd.field('MultipleChoice').customValueTitle = 'New Title';
});
1 Like