Skip to main content
Nintex Community Menu Bar
Question

Pass argument from button to JavaScript Snippet

  • July 10, 2024
  • 2 replies
  • 39 views

Forum|alt.badge.img+2

I currently have a “Send Notification” button on a single record pop up. 

All I am trying to do is when someone clicks this button to pass the record ID to the javascript snippet. But I don’t seem to understand on how I can achieve this. 

The current code.

var params = arguments[0], $ = skuid.$;


//var model = skuid.model.getModel(‘RnDVac’), row = model.getFirstRow();
var model = skuid.model.getModel(‘RnDVac’), row = model.getRowById();

var requestType     = model.getFieldValue(row, ‘RequestType__c’);
var requestID       = model.getFieldValue(row, ‘Name’);
var requestIDNumber = model.getFieldValue(row, ‘DocID__c’);



This topic has been closed for replies.

2 replies

Forum|alt.badge.img+18

Paulo,

console.log(arguments) should help you find what you need.

I believe model = arguments[0].model and row = arguments[0].row, so you could do something like this to get the record id:

var&nbsp;model = arguments[0].model,&nbsp;<br>row =&nbsp;arguments[0].row,&nbsp;<br>id = model.getFieldValue(row,'Id');

Forum|alt.badge.img+2

Thank you Matt, that is now working as expected.