📄️ App Context
App Context is a storage object shared across the whole application session. Components can be bound to it directly, or a script can read and write it, so it's a convenient way to share a value between otherwise unrelated forms and pages for as long as the session lasts.
📄️ Data
This object contains the values collected from the current form in question.
📄️ ParentFormValues
The term ParentFormValues indicates that these are the values collected from the form that is considered the parent or source of the dialog. In the context of a dialog, the parent form is the form that triggers or initiates the dialog's appearance. If we have a dialog rendering on top of a form, this is considered a parent-child relationship. The base invoice-details form acts as the parent, and the rendered invoice-line-item-create form is a child. Therefore, the current context of the application looks like this:
📄️ SelectedRow
In the context of a datatable, a SelectedRow object typically refers to the representation of a row that has been selected by the user. Datatables are commonly used in web applications to display tabular data, and allowing users to select one or more rows can be an essential feature for various interactions.