ui.Dialog.setActionText

Defining the text of a default action view.

Syntax

setActionText(
   name STRING,
   text STRING )
  1. name is the name of the action, see Identifying actions in dialog methods.
  2. text is the text to be set.

Usage

Use the setActionText() method to define the label of the default view of an action.
CALL DIALOG.setActionText( "confirm", "Confirm" )

The first parameter identifies the action object of the dialog.

The second parameter defines the label to be used in the implicit action view corresponding to the specified action.

This method will only affect the rendering of implicit action views such as default action views, context menu action views and rowbound action views: The explicit action views (such as buttons in the form layout) will not get the new attribute value. Note that the comment attribute will not be rendered on context menu and rowbound action views.