AEM 6.4 has reached the end of extended support and this documentation is no longer updated. For further details, see our technical support periods. Find the supported versions here.
AEM supports both:
Content authors can use features of the RTE to provide accessibility information while adding content to a page. This can include adding structural information through headings and paragraph elements.
You can configure and customize these features by configuring RTE plugins for the component. For example, the paraformat
plugin allows you to add additional block level semantic elements, including extending the number of heading levels supported beyond the basic H1
, H2
and H3
provided by default.
The RTE is available in a variety of components from both the touch-enabled and the classic UI. However, the primary component for using the RTE is the Text component.
The Text component in AEM is available for both the touch-enabled and the classic UIs. The following images show the rich text editor with a range of plugins enabled, including paraformat
:
The Text component in the touch-enabled UI:
The Text component in the classic UI:
There are differences between the RTE features available in the classic UI and the touch-enabled UI. For more details see
Full instructions on configuring the RTE are available on the Configuring the Rich Text Editor page. This covers all issues, including the key steps:
By configuring a plugin within the appropriate rtePlugins
sub-branch in CRXDE Lite (see the following image), you can activate either all or specific features for that plugin.
New semantic block formats may be made available for selection by:
Depending on your RTE, determine and navigate to the configuration location.
Enable the Paragraphs selection field; by activating the plugin.
Specify the formats you want to have available in the Paragraphs selection field.
The paragraph formats are then available to the content author from the selection fields in the RTE. They can be accessed:
With structural elements available in the RTE via the paragraph format options, AEM provides a good basis for the development of accessible content. Content authors cannot use the RTE to format font size or colors or other related attributes, preventing the creation of inline formatting. Instead they must select the appropriate structural elements, such as headings and use global styles chosen from the Styles option. This ensures clean markup, greater options for users who browse with their own style sheets and correctly structured content.
In some cases, content authors will find it necessary to examine and adjust the HTML source code created using the RTE. For example, a piece of content created within the RTE may require additional markup to ensure compliance with WCAG 2.0. This can be done with the source edit option of the RTE. You can specify the sourceedit
feature on the misctools
plugin.
Use the sourceedit
feature carefully. Typing errors and/or unsupported features can introduce more problems.
To further extend the accessibility features of AEM, it is possible to extend the existing components based on the RTE (such as the Text and Table components) with additional elements and attributes.
The following procedure illustrates how to extend the Table component with a Caption element that provides information about a data table to assistive technology users:
In the constructor of the TablePropertiesDialog
, add an additional text input field that is used for editing the caption. Note that itemId
must be set to caption
(i.e. the DOM attribute’s name) to automatically handle its content.
In Table you must explicitly set or remove the attribute to/from the DOM element. The value is passed by the dialog in the config
object. Note that DOM attributes should be set/removed using the corresponding CQ.form.rte.Common
methods ( com
is a shortcut for CQ.form.rte.Common
) to avoid common pitfalls with browser implementations.
This procedure is only suitable for the classic UI.
Start CRXDE Lite. For example: http://localhost:4502/crx/de/
Copy:
/libs/cq/ui/widgets/source/widgets/form/rte/commands/Table.js
to:
/apps/cq/ui/widgets/source/widgets/form/rte/commands/Table.js
You may need to create intermediate folders if they do not already exist.
Copy:
/libs/cq/ui/widgets/source/widgets/form/rte/plugins/TablePropertiesDialog.js
to:
/apps/cq/ui/widgets/source/widgets/form/rte/plugins/TablePropertiesDialog.js
.
Open the following file for editing (open with double-click):
/apps/cq/ui/widgets/source/widgets/form/rte/plugins/TablePropertiesDialog.js
In the constructor
method, before the line reading:
var dialogRef = this;
Add the following code:
editItems.push({
"itemId": "caption",
"name": "caption",
"xtype": "textfield",
"fieldLabel": CQ.I18n.getMessage("Caption"),
"value": (this.table && this.table.caption ? this.table.caption.textContent : "")
});
Open the following file:
/apps/cq/ui/widgets/source/widgets/form/rte/commands/Table.js
.
Add the following code at the end of the transferConfigToTable
method:
/**
* Adds Caption Element
*/
var captionElement;
if (dom.firstChild && dom.firstChild.tagName.toLowerCase() == "caption")
{
captionElement = dom.firstChild;
}
if (config.caption)
{
var captionTextNode = document.createTextNode(config.caption)
if (captionElement)
{
dom.replaceNode(captionElement.firstChild,captionTextNode);
} else
{
captionElement = document.createElement("caption");
captionElement.appendChild(captionTextNode);
if (dom.childNodes.length>0)
{
dom.insertBefore(captionElement, dom.firstChild);
} else
{
dom.appendChild(captionElement);
}
}
} else if (captionElement)
{
dom.removeChild(captionElement);
}
Save your changes using Save All
A plain text field is not the only type of input allowed for the value of the caption element. Any ExtJS widget, that provides the caption’s value through its getValue()
method, could be used.
To add editing capabilities for further additional elements and attributes, ensure that both:
itemId
property for each corresponding field is set to the name of the appropriate DOM attribute (TablePropertiesDialog
).Table
).