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.
Keep an eye out for upcoming NetSuite events, including meetups, workshops, and webinars. These sessions are a great way to connect with peers, learn from experts, and stay current on the latest NetSuite updates and best practices. Registration links are provided in each event.
Save $300 - limited to first 1,000 registrants
Join the NetSuite community to innovate, connect, and discover what’s next.
SuiteWorld brings thousands of innovators, builders, and leaders together to learn, connect, and shape what’s next. This October, explore how to build a stronger foundation for growth through inspiring keynotes, major product reveals, hands-on sessions, and unforgettable moments—all in one place for our biggest event of the year. Register now
Join the NetSuite community to innovate, connect, and discover what’s next.
SuiteWorld brings thousands of innovators, builders, and leaders together to learn, connect, and shape what’s next. This October, explore how to build a stronger foundation for growth through inspiring keynotes, major product reveals, hands-on sessions, and unforgettable moments—all in one place for our biggest event of the year. Register now
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