My Stuff
Share Your SuiteWorld Experience & Earn a Special Badge!
Intelligent Payment Automation version 1.0.3 is now available in the SuiteApp Marketplace. The SuiteApp, powered by BILL, lets you automate payments, manage vendor details, and bank account information within NetSuite. Learn more
Comments
-
I thought that doing form.setScript was the same as adding a script directly to my form using the UI which i had tried previously and my script never ran. Apparently it is different when you use the before load and form.setScript. Using that did run my javascript the way i was expecting. Regarding attaching a function to…
-
I think i just figured out my issue although it's not really the nicest and cleanest way of doing this. I created a new "Inline HTML" field on the custom record in question. Set the Default Value to the Javascript i wanted wrapped in <script> tags. Unchecked the "Formula" checkbox Hit Save Now, my javascript does run on…
-
Thank you very much for that information, it helped out a lot. For those wondering, here is a snippet of the code I used in order to get the link information: var filters = new Array(); var columns = new Array(); filters[0] = new nlobjSearchFilter('internalid', '', 'anyof', currRec.getId()); columns[0] = new…