Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Passing NetSuite Array to Javascript
Any help would be appreciated!
I would like to pass the Results to a javascript function, having some difficulties with my syntax... I think when I assign the array to 'y' it coverts it to a string, any way to pass it as an array.
allCustomersRows = []; //array to hold the Rows data for (i = 0; i < allCustomers_Search.length; i++) { allCustomersRows[i] = []; allCustomersRows[i][0] = allCustomers_Search[i].getValue('entityid'); allCustomersRows[i][1] = allCustomers_Search[i].getValue('companyname'); allCustomersRows[i][2] = allCustomers_Search[i].getValue('custentityinfo_pm'); allCustomersRows[i][3] = allCustomers_Search[i].getValue('custentityinfo_icd'); allCustomersRows[i][4] = allCustomers_Search[i].getValue('custentity6'); allCustomersRows[i][5] = allCustomers_Search[i].getValue('firstsaledate'); allCustomersRows[i][6] = allCustomers_Search[i].getValue('custentity_lastsaledate'); allCustomersRows[i][7] = allCustomers_Search[i].getText('salesrep'); allCustomersRows[i][8] = allCustomers_Search[i].getValue('internalid'); allCustomersRows[i][9] = allCustomers_Search[i].getText('parent'); if (allCustomersRows[i][1] == allCustomersRows[i][9].substring(6)) { allCustomersRows[i][9] = ""; } } } else{ response.write("<tr><td>Sorry no available customers to display</td></tr>"); } //PROBLEM HERE *** response.write("<script type='text/javascript'>" + 'var y="' + allCustomersRows + '";' + "alert(y); " + displayAllCustomers + "displayAllCustomers(y)</script>"); 0