Hello! Outside Skuid I have an OnClick Javascript button on a list view which passes selected records for a mass mail merge using Drawloop. Does anyone know would I incorporate this into inline javascript to use in Skuid’s mass actions on a related list table where the parent is an account and the children are Installation__c? Thanks for any help! Here’s the code for the button: {!REQUIRESCRIPT(“/soap/ajax/16.0/connection.js”)} var ids = {!GETRECORDIDS($ObjectType.Installation__c)}; if (!ids || ids.length < 1) alert(“Please select at least one record.”); else { var url = “/apex/loop__masslooplus?contactfield=Primary_Contact__c&sessionId={!$Api.Session_ID}&retURL=” + encodeURI(window.location.pathname+window.location.search); url += “&recordIds=”+ids.join(“,”); window.location.href = url; }
This topic has been closed for replies.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.