Close interaction tab on submission of a request
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2024 04:35 AM
Hi Folks,
I have a custom workspace in which if we click a button it will open a record producer within the workspace. Requirement is to close the workspace tab after submission of the request.
Screenshots below.
on click of submit particular tab in the workspace should close but not the entire browser window.
Thanks,
Teja.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2024 04:06 PM
Were you able to get this worked out? I need to achieve the same result but not able to get solution that yet. If you already got a solution, please share. Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2024 03:26 AM
Hi,
Please use client side UI action
OnClick: closeWindow();
this script should work fine
Script:
function closeWindow(){
window.open('','_self').close();
}
Suresh.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2024 09:50 AM
Still not working for me. Can you please provide some screenshots with steps to achieve this?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2024 12:39 AM
Hello,
One possible solution is to create a custom UX Client Script to force it, after a specific time, to close after submission:
function handler({api, event, helpers, imports}) {
helpers.timing.setTimeout(() => helpers.screen.updateStatus({status:"closed"}), 1000);