Skip to main content
Nintex Community Menu Bar
Question

Open multiple windows by Mass Action on selected table rows (Using window.open)

  • July 9, 2024
  • 5 replies
  • 13 views

Forum|alt.badge.img+8

It would be a big value add if I could open multiple windows from a Mass Action on selected table rows. 

My thought is to use window.open, but I don’t know how to push the URLs into the javascript.


Any thoughts?

This topic has been closed for replies.

5 replies

Forum|alt.badge.img+13

If you use a Snippet like this for your Mass Action it should do the trick:

skuid.$.each(arguments[0].list.getSelectedItems(),function(i,item){
    window.open(‘/apex/skuid__UI?page=SomeOtherPage&id=’ + item.row.Id);
});



Forum|alt.badge.img+8
  • Author
  • 112 replies
  • July 10, 2024

You’re a brain with legs


Forum|alt.badge.img+13

I do have legs


Forum|alt.badge.img+18
  • 2192 replies
  • July 10, 2024

Shouldn’t we be able to do this with a Redirect to URL action in the action framework, as long as the target is _blank?

Mass action should run once for each selected item… ?


Forum|alt.badge.img+13

Yep! A better option indeed.