Skip to content

Commit 4e6a78f

Browse files
Create CopyBulkIDs.js
1 parent 3e6799c commit 4e6a78f

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/*
2+
//This action will be able to copy the sysids of multiselected records.
3+
4+
Table - Global
5+
List Choice - True
6+
Client - True
7+
onClick - copySysIDs()
8+
9+
Result - All the sysids will be copied as comma-separated strings which you can further copy into a system property for validations
10+
11+
*/
12+
13+
function copySysIDs(){
14+
var sysIds = g_list.getChecked();
15+
copyToClipboard(sysIds);
16+
}

0 commit comments

Comments
 (0)