Posted 3 years ago
Christine Jessen, Alum
var params = arguments[0], $ = skuid.$;The params variable here will return an object that provides info about the record that was just clicked on within the queue (in particular, params.row will give you that info). In addition, you have all the model information within params.model.
console.log(params)In your browser console (Option + Command + J in Chrome), you'll see the output of params and you can use that object info in your JS snippet!