I’m new to Skuid, and trying to figure out why this code is working fine as a mass action on a table, but shows argumentst0].list as undefined when used as an action on the Next Step button of a Wizard.
The table with the mass action is the same table in the first step in the wizard. If the arguments aren’t getting passed properly to the Wizard, how can I make that happen?
Here’s the code:
var idsSelected = skuid.$.map(argumentsu0].list.getSelectedItems(),function(item){ return item.row.Id; }); var ids=idsSelected.join(","); window.alert(ids);