You are viewing limited content. For full access, please sign in.

Question

Question

Is there a way to change the name of the Comments Box at the bottom of the Approval task?

asked on October 5, 2017 Show version history

Is there a way to change the name of the Comments Box at the bottom of the Approval task to a different name? Example:  Task Comments

We have a Form that is asking numerous questions.  Each question has a comment box (Multi-field)

This is getting confusing to the user.  It would be great to make it the Task Comment Box so it would be different.

0 0

Replies

replied on October 5, 2017

Insert this code into the JavaScript portion of the form that is used in the User Task

$(document).ready(function() {
  
  $(".approval-wrap > p").text("Task Comments");
  
});

 

2 0
replied on October 6, 2017

I tried this and it did not work.  Any other suggestions?

0 0
replied on October 6, 2017

I figured it out.  I changed the double quotes around around the .approval-wrap to single quotes.

 

Thanks for your help

 

$(document).ready(function() {
  
  $('.approval-wrap > p').text("Task Comments");
  
});
0 0
replied on October 6, 2017

That's very strange. Oh well. Glad it's working. smiley

0 0
You are not allowed to follow up in this post.

Sign in to reply to this post.