Number as hyper link
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2025 04:03 AM
Hi all,
i want Number as hyper link (Incident,problem,Hr profile tables) when we click on context menu just like copy to clipboard i have created a context menu as HTML-formatted link when user click on this the incident number should be copied as hyperlink, screen shot shared below for reference
By using below code i am able to copy the Number as text.
runContextNumberAction();
function runContextNumberAction(){
var gr = new GlideRecord(g_list.getTableName());
gr.get(g_sysId);
copyToClipboard(gr.number);
}
i need help on this.
Thanks.
5 REPLIES 5
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2025 04:48 AM
@Sandeep Rajput Logs are empty