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.
Some Suitscript Issues
Hi,
Im experiencing some issues in a suitlet i am building and was wondering if anyone can help me.
Issue 1: Suitlet draws a number of fields on a form and calls setDisplaySize on them
var errorMessageField = form.addField('errtxt','text',''); var addressListField = form.addField('addresslist','select',''); errorMessageField.setDisplaySize(70,10); addressListField.setDisplaySize(400,10);for some reason the method works on the text field and alters the size accordingly but has no effect on the select field (i have tried multiselect too and this also does not work), is this a bug with the method or is there an issue around how i call it?
0