My Stuff
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.
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…