Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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.

Image Removed

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.

Image Added

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
    languagejava
    themeConfluence
    richTextArea.setValue("Hello 123 !!!");
  • Inhalt auslesen Read content

    Code Block
    languagejava
    themeConfluence
    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
    languagejava
    themeConfluence
    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
    languagejava
    themeConfluence
    richTextArea.focus();
  • Inhalt selektierenSelect content

    Code Block
    languagejava
    themeConfluence
    richTextArea.selectAll();

...

Go to XdevRichTextArea Javadoc

...