Skip to content

Commit 4618a70

Browse files
AdobeSign.js
1 parent 1af229d commit 4618a70

File tree

1 file changed

+15
-0
lines changed
  • Client-Side Components/UI Actions/RedirectAdobeSign

1 file changed

+15
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// UI Action - "Redirect to Adobe Sign".
2+
// HR Agent workspace
3+
Trigger Condition - current.hr_service== gs.getproperty("On Boarding HR Service");
4+
Format Configurable Workspace - "Checked" for workspace button visibility
5+
Table - "sn_hr_le_case"
6+
7+
//Workspace Client script
8+
function onClick(g_form) {
9+
10+
g_form.setValue("work_notes","Redirected to Adobe Application"); // Worknotes updated
11+
g_form.addInfoMessage("Redirected to Adobe Application");
12+
var win= top.window.open("https://xyz.eu1.echosign.com/account/homeJS",'_blank'); // Redirect to Adobe Sign page
13+
win.focus();
14+
g_form.save();
15+
}

0 commit comments

Comments
 (0)