3 Things I Learned in January 2021
Copy text to clipboard Recently, I had to create a Context Menu to copy some elements from a list to the clipboard. Servicenow does that OOTB in a few places, so no need to reinvent the wheel! Let’s have a look at the UI Action “Copy sys_id”: runContextAction(); function runContextAction() { copyToClipboard(g_sysId); } …