UI Form automatically scrolling to fieldIssue The UI form is automatically scrolling to a specific field after loading the content.ReleaseKingston Patch 3aCauseThe behavior is related to an onLoad client script where the showFieldMsg function is used. According to our documentation regarding Display field messages, the showFieldMsg function will scroll to the form field unless the optional "scroll form" argument is set to false. When omitted, the scroll is set to true. ResolutionTo prevent the form from scrolling, set "Scroll form" to false on the showFieldMsg call of your onLoad client script: g_form.showFieldMsg('<FIELD_NAME>', '<MESSAGE>', 'info', false);