Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions Client-Side Components/UI Actions/RedirectAdobeSign/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#Contribution

Create a UI action named "Redirect to Adobe Sign", which will be available in the HR Agent Configurable Workspace. When the fulfiller clicks this button, they will be redirected to the
Adobe Sign page to initiate the signature integration process.
This UI action will be available specifically for the Onboarding HR Service.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
// UI Action - "Redirect to Adobe Sign".
// HR Agent workspace
Trigger Condition - current.hr_service== gs.getproperty("On Boarding HR Service");
Copy link
Contributor

@rohi-v rohi-v Oct 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please remove specific conditions and mention 'conditions as per requirements'.

Format Configurable Workspace - "Checked" for workspace button visibility
Table - "sn_hr_le_case"

//Workspace Client script
function onClick(g_form) {

g_form.setValue("work_notes","Redirected to Adobe Application"); // Worknotes updated
g_form.addInfoMessage("Redirected to Adobe Application");
var win= top.window.open("https://xyz.eu1.echosign.com/account/homeJS",'_blank'); // Redirect to Adobe Sign page
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This works for Any URL so making it generic will help users understand.
Mention in readme file how this can be used for other pages.

win.focus();
g_form.save();
}
Loading