Personal signature under additional comment
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-19-2019 07:56 PM
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
- Labels:
-
Scripting and Coding
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-19-2019 08:40 PM
When you are adding the fields after comments, how could it bring the fields before the comments? Not making sense to me.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-19-2019 09:01 PM
It adds the fields to the comments, then adds the original comment after.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-22-2024 11:47 AM
Were you able to figure out the solution to this?
Aman

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-19-2019 08:52 PM
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