Skip to Main Content

Title region

Breadcrumbs

Maximum Height

Overrides the maximum height of the rich text editor working area. The dynamic action must be created for the plug-in event UC Before Initialization.

Preview components

Click on the page component below to preview its configuration in the Oracle APEX page designer.

Initialization JavaScript Code

Alternatively, the rich text editor options can be set using the plug-in JavaScript Initialization Code.
function( pOptions ) {
  pOptions.heightMax = 250;
  return pOptions;
}

Documentation

Read the documentation to learn more about the supporting dynamic action plug-in features.

Learn more

The rich text editor can expand along with the content when the plug-in attribute Expand height to fit rich text is checked.

Global Page

The supporting dynamic action plug-in can be used on Oracle APEX global page to customize the plug-in across the application.

Live demo

Change Settings

Plug-in

About the editor's maximum height

The editor's maximum height is initially set using the plug-in height attribute (alternatively altered by the plug-in JavaScript Initialization Code returning the heightMax option). In this example, you can use two dynamic actions implementing the supporting dynamic action plug-in Maximum Height, overriding the maximum height of an editor.


100% (dynamic action)

When selecting this option, the dynamic action Set maximum height to 100% is executed on the plug-in event UC Before Initialization. The supporting plug-in overrides the maximum height to 100%, making an editor expand along with the rich text.

500px (dynamic action)

When selecting this option, the dynamic action Set maximum height to 500px is executed on the plug-in event UC Before Initialization. The supporting plug-in overrides the maximum height to 500px. 

250px (attribute: JavaScript Initialization Code)

When selecting this option, the plug-in overrides the editor's maximum height computed based on the plug-in height attribute.

100px (attribute: Height)

When selecting this option, the plug-in sets the editor's maximum height based on the plug-in attribute Height defined in the page designer.