Das XdevRichTextArea ist ein Richtext-Editor, der alle wichtigen Grundfunktionen für die Textverarbeitung bietet, insbesondere Textformatierung. Der Text wird in HTML-Format dargestellt. Das XdevRichTextArea ist eine Formular-Komponente und kann via XdevFieldGroup persistiert werden.
Wichtige Events:
valueChange - Wird ausgelöst, wenn der Inhalt verändert wurde, u.a. durch Hinzufügen oder Löschen von Zeichen, jedoch erst wenn die UI-Komponente den Fokus verliert.
Examples:
...
The XdevRichTextArea is a rich text editor that provides all the important basic functions you need to edit and format text. The text is represented in HTML format. The XdevRichTextArea is a a form component and can be persisted via the XdevFieldGroup.
Important events:
valueChange - valueChange - Is triggered when the content has been changed, mainly through adding or deleting of characters, however only if the UI component loses the focus.
Examples:
Allocate content - Allocates a text as string to the XdevRichTextArea. This may trigger a textChange or valueChange event.
Code Block language java theme Confluence richTextArea.setValue("Hello 123 !!!");
Inhalt auslesen Read content
Code Block language java theme Confluence String content = richTextArea.getValue();
Inhalt löschen - Löscht den gesamten Text im XdevRichTextArea. Dies kann ggf. ein textChange oder valueChange Event auslösenDelete content - Deletes the entire content in the XdevRichTextArea. This may trigger a textChange or valueChange event.
Code Block language java theme Confluence richTextArea.clear();
Fokus setzen - Weist dem XdevRichTextArea den Focus zu. Dies kann ggf. ein focus Event auslösenSet focus - Allocates the focus to the XdevRichTextArea. This can trigger a focus event, if necessary.
Code Block language java theme Confluence richTextArea.focus();
Inhalt selektierenSelect content
Code Block language java theme Confluence richTextArea.selectAll();
...
Go to XdevRichTextArea Javadoc
...