Rich Text Editor

This page describes rich text editor integration

Rich Text Editor

Rich Text Editor integration

schema.json
{
  "title": "Example for rendering rich text editor component",
  "description": "A simple form with rich text editor component",
  "type": "object",
  "properties": {
    "bio": {
      "type": "string",
      "title": "Bio"
    },
  }
}
uiSchema.json
{
 "bio": {
   "ui:widget": "textarea",
   "ui:options": "rich-text-editor"
  },
}
formData.json
{
  "bio": "<p><u>ads</u></p><p><strong>Something nice</strong></p><p><em>Nice italic</em></p><ul><li>Some normal text</li></ul>",
}

Last updated