Personal signature under additional comment

kedler
Kilo Guru

Hi,

Does anyone know of a possible way to add a personal signature underneath an additional comment? I tried creating a business rule on update with a script. Something like

current.comments = current.comments + 'Name' + 'Department' + 'Email' + 'Phone Number';

The problem is this is adding the signature before the comment and not after.

Any recommendations? Thanks

10 REPLIES 10

Geeky
Kilo Guru

When you are adding the fields after comments, how could it bring the fields before the comments? Not making sense to me.

 

It adds the fields to the comments, then adds the original comment after.

Were you able to figure out the solution to this?

 

Aman

Harsh Vardhan
Giga Patron

did you try with onload client script.

 

whenever you will open a form it will set the your sign on the comment field

example:

 

function onLoad() {
   //Type appropriate comment here, and begin script below
   g_form.setValue('comments',"\n"+"\n"+'Name: Harshvardhan'+"\n"+"Location: Patna");
}

 

it will looks like

 

find_real_file.png