smart-rich-text-editor-lite
Reactive icon

Smart Rich Text Editor - Lite

Stable version 1.0.1 (Compatible with OutSystems 11)
Uploaded
 on 03 December 2025
 by 
5.0
 (1 rating)
smart-rich-text-editor-lite

Smart Rich Text Editor - Lite

Documentation
1.0.1

How to Use

  1. Drag the component Web Block to your screen.
  2. Provide a unique Div ID (example: wysi_1).
  3. Use the GetHtml Client Action to retrieve the HTML content.
  4. Use the SetHtml Client Action to set the HTML in editor.
  5. Optionally update toolbar config dynamically using JSON config input.

Sample Config

{
  'toolbar': {
    'bold': true,
    'italic': true,
    'underline': true,
    'image': true,
    'table': true,
    'link': true,
    'codeView': true,
    'fontSize': true,
    'foreColor': true,
    'backColor': true
  },
  'placeholder': 'Start typing here...',
  'initialHtml': '',
  'sanitizeOutput': false
}

Notes for OutSystems Developers

  • Use a unique Div ID for each editor instance
  • Always pass a valid JSON string in the Config parameter

1.0.0

How to Use

  1. Drag the component Web Block to your screen.
  2. Provide a unique Div ID (example: wysi_1).
  3. Use the GetHtml Client Action to retrieve the HTML content.
  4. Optionally update toolbar config dynamically using JSON config input.

Sample Config

{
  'toolbar': {
    'bold': true,
    'italic': true,
    'underline': true,
    'image': true,
    'table': true,
    'link': true,
    'codeView': true,
    'fontSize': true,
    'foreColor': true,
    'backColor': true
  },
  'placeholder': 'Start typing here...',
  'initialHtml': '',
  'sanitizeOutput': false
}

Notes for OutSystems Developers

  • Use a unique Div ID for each editor instance
  • Always pass a valid JSON string in the Config parameter