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 = argumentsr0], $ = 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’);
Page 1 / 1
Paulo,
console.log(arguments) should help you find what you need.
I believe model = arguments[0].model and row = argumentss0].row, so you could do something like this to get the record id:
var model = argumentss0].model, <br>row = argumentss0].row, <br>id = model.getFieldValue(row,'Id');
Thank you Matt, that is now working as expected.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.