SS2.0 question. I am creating a form with a Suitelet and attaching a Client Script to control some behaviour on FieldChange. The form has some fields that should be hidden when the form loads, and only show if certain other fields change. If I try to set them to hidden from the get-go in the Suitelet using myfield.updateDisplayType({displayType: serverWidget.FieldDisplayType.HIDDEN}); it seems that then I can’t make them visible through the Client Script. I have to leave that line out and set them to hidden in the PageInit using record.getField({fieldId: myfield}).isDisplay = false;