Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Overview

Excerpt

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 Block
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 Block
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 Block
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

...

On this page

...