Advanced Rich Text Editor Connected System (Vuram)

Overview

This Connected System allows users of the Rich Text Advanced Rich Text Editor Component Plug-In component plug-in to upload images and have them be stored in the Appian document management system to export the content as Pdf and store them in Appian and return the corresponding document Id.

Key Features & Functionality

  • Advanced Rich Text Editor Image Upload
Anonymous
  • Thank you for the response!

  • Hi ,

    I would suggest a workaround for now that you can try. You will be able to find the document ids in the html text in each image tag, you can use regex to get those ids from the html text. Using that you can identify the removed images by comparing with the local!docIds. Meanwhile we will try to find a solution for this issue and update the plugin.

    Thanks.

  • Hence, how do I segregate the Ids for moving the document in the permanent folder and for deleting the duplicate and unwanted document from the temporary folder.

    And FYI, multiple end users can use the same editor on same time for in System.

  • richTextEditorField(
                        label: "",
                        labelPosition: "ABOVE",
                        required: true(),
                        height: "AUTO",
                        richTextValue: local!message,
                        richTextSaveInto: local!message,
                        isReadOnly: false,
                        showMenubar: true,
                        maxSize: 4294967295,
                        allowImageUpload: true(),
                        imageStorageConnectedSystem: cons!IMAGE_UPLOAD_CONNECTED_SYS,
                        uploadedImagesDocIds: local!docIds,
                        placeholder: null,
                        enableSpellChecker: true,
                        showUsageBar: false,
                        enableFullpageOutput: false,
                        enableExportPdf: false
                      )


    Hi,

    I used the uploadedImagesDocIds functionality in the rich text enter but I am not able to remove the doc ids from the referenced local variable (see in above code "local!docIds") for the documents which I erased from the editor.

    Example: Let suppose I uploads 5 document: A,B, C, D and E.

       And if I remove the doc B and D from the editor then I can not able to remove the particular docIds from the variable (local!docIds).

    Thank You.

  • Hi ,

    On every refresh of the screen, the value of the component will be erased. So that the content will be gone and the component uploads the image as a new document to the Appian.

    We have the uploaded document ids provided in the output. Using that move the uploaded document to the permanent folder and erase the existing documents in the uploaded folder.

  • Hi,

    My developers are facing an issue which we don't know how to resolve - after enabling the connected system within RTE, and pasting some image inside it, every time we refresh the screen, a new copy of the image is being uploaded to the related Appian folder. Is there a way how to avoid it?

    Thanks, Aleksandrs Sirotinskis

  • v1.0.2 Release Notes
    • Security patch attached

  • v1.0.0.1 Release Notes
    • Export the content as PDF and store them in Appian and return the corresponding document ID.