RichText Editor

Click to copy

Adds text editor into the application.


Look and Feel Settings

Label (not mandatory) to be used to show the component's label.

Default value (not mandatory) default text to be populated when the component is created.

Placeholder (not mandatory) to be used to show the component's placeholder.

Name (mandatory) - name of the component.

Tooltip (not mandatory) - tooltip of the component.

Step (not mandatory) - selection step value.

Required (mandatory) - marks if the selection required or not. Is set to false by default.

Disabled (mandatory) - makes the component disabled if turned on. Is turned off by default.

Visible (mandatory) - makes the component visible if turned on. Enabled by default.


Workflow triggers

  • onChange - fires when the dropdown option is changed.
  • onFocus - fires when the component is being focused on.
  • onBlur - fires when the component is blurred.
  • onCreate - fires when the component is created.
  • onShow - fires when the component is shown.
  • onHide - fires when the component is hidden.
  • onDestroy - fires when the component is destroyed.

Component Actions:

Richtext Get Properties

Gets the component's properties.

Input parameters:

  • Component Id [string] - component's identifier;

Output parameters:

  • Label [string] - component's label;
  • Placeholder [string] - component's placeholder;
  • Disabled [boolean] - disables component if true;
  • Visible [boolean] - defines if the component is visible or not;
  • Tooltip [string] - tooltip string;
  • Required Mark [boolean] - shows required mark if true;
  • Debounce (ms) [integer] - delay to validate the value;
  • Value [html formatted page] - html formatted page based on the input data from Richtext editor;
  • Validate Status [Status type] - status to be shown on validate the value;  
  • Validate Message [string] - message to be shown on validate the value;

RichText Get Properties

Richtext Set Properties

Sets the component's properties.

Input parameters:

  • Component Id [string] - component's identifier;
  • Label [string] - component's label;
  • Placeholder [string] - component's placeholder;
  • Disabled [boolean] - disables component if true;
  • Visible [boolean] - defines if the component is visible or not;
  • Tooltip [string] - tooltip string;
  • Required Mark [boolean] - shows required mark if true;
  • Debounce (ms) [integer] - delay to validate the value;
  • Value [html formatted page] - html formatted page based on the input data from Richtext editor;
  • Validate Status [Status type] - status to be shown on validate the value; 

RichText Set Properties

Richtext Update Properties

Updates component's properties.

Input parameters:

  • Component Id [string] - component's identifier;
  • Label [string] - component's label;
  • Placeholder [string] - component's placeholder;
  • Disabled [boolean] - disables component if true;
  • Visible [boolean] - defines if the component is visible or not;
  • Tooltip [string] - tooltip string;
  • Required Mark [boolean] - shows required mark if true;
  • Debounce (ms) [integer] - delay to validate the value;
  • Value [html formatted page] - html formatted page based on the input data from Richtext editor;
  • Validate Status [Status type] - status to be shown on validate the value; 

RichText Update Properties


Usage example

To update the text value in the Richtext editor - html formatted text has to be provided as one of the component's input properties. To HTML block has to be used for this purpose.

Input value can be set on the Richtext editor component when it is specified and converted into HTML.