Any tricks to making this work: I'd like to dynamically hide/show a field on a form via a client script (e.g. field.isDisplay = true/false). However, the field I'd like to hide/show has been hidden by a user event script as part of the beforeLoad event (e.g. field.updateDisplayType({ displayType : serverWidget.FieldDisplayType.HIDDEN });). So far my only solution is to not hide the field in the user event script, and then hide it via the client script when the page loads (in pageInit). However, it looks pretty bad since the fields show up for a fraction of a second when you load the the page and then disappear.