- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2 hours ago
Hello Team,
This UI action is not working in workspace. It is only working in Native UI. Do we need to explicitly add any code in the workspace part. When clicked in the workspace, it is not doing anything.
@
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2 hours ago
for this workspace client script needs to be updated
add this
function onClick(g_form) {
var confirmValue = confirm('Are you sure you want to cancel');
if (confirmValue)
g_form.submit('cancel');
}
💡 If my response helped, please mark it as correct ✅ and close the thread 🔒— this helps future readers find the solution faster! 🙏
Ankur
✨ Certified Technical Architect || ✨ 10x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2 hours ago
@Ankur Bawiskar Kindly help. this is in response to the previous solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2 hours ago
for this workspace client script needs to be updated
add this
function onClick(g_form) {
var confirmValue = confirm('Are you sure you want to cancel');
if (confirmValue)
g_form.submit('cancel');
}
💡 If my response helped, please mark it as correct ✅ and close the thread 🔒— this helps future readers find the solution faster! 🙏
Ankur
✨ Certified Technical Architect || ✨ 10x ServiceNow MVP || ✨ ServiceNow Community Leader
