OpenAction
- action with open identifier, intended for opening an edit screen for the entity instance which is the current value of the component.
The following specific methods are defined in the OpenAction
class:
-
setEditScreenOpenType()
allows you to specify entity selection screen open mode.THIS_TAB
by default. -
setEditScreenDialogParams()
allows you to set the window properties for an edit screen that is opened in theDIALOG
mode (see previous method). Other modes are not affected. -
setEditScreen()
allows you to specify entity edit screen identifier.{entity_name}.edit
screen is used by default, for example,sales$Customer.edit
. -
setEditScreenParams()
allows you to set edit screen parameters, passed to itsinit()
method. -
afterWindowClosed()
is invoked by the action after closing the edit screen. This method does not have implementation and can be overridden in inheritors to handle this event.