Skip to main content
Skip table of contents

B25.FormEvent

Overview

Represent an event, triggered by the user interacting with the form.

Events are generated when the user interacts with the form, such as updating a field’s value or adding a record to a related list. These events are then passed to any (default or custom) handlers that have been defined for that interaction.

Methods

getNewValue

CODE
Object getNewValue()

This method will return the new value as a result of the event. For example, if the user enters a text in a text field, this method will return a String representation of what the user entered.

Return value: Object


getPreviousValue

CODE
Object getPreviousValue()

This method will return the value that the field had before the event happened. For example, if the user changes a text in a text field, this method will return a String representation of the old text.

Return value: Object


getGuid

CODE
String getGuid()

If this event was generated on a record in a related list, this will return the unique identifier for that record. This value can be used to identify a specific entry in a list of related list items.

Return value: String

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.