UI Action in workspace is not working.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-10-2023 06:46 PM
Hi Community,
We are planning on moving to workspace soon. So I have been testing out all the UI action we have on form.
One UI action in particular dont seem to work.
This UI Action gets the accountid and adds the id to the end of a url.
When user clicks on it, full url is formed with account id and user is redirected to the page.
.
Please help.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-13-2023 07:34 AM
Hi @RichardK781 ,
Please try checking the "Workspace Form Menu" and "Format for configurable workspace" option and then try to write a script like below:
var accountid = account.u_company_id;
var url = "your url" + accountid;
var win = top.window.open(url,'_blank');
win.focus();
Please mark helpful, if the solution works.
Thanks