richTextImage

not able to render the image documents when we use richTextImage function - seeing an cross mark as the image -

a!richTextImage(
value:{
a!documetImage(
document: xxdocumentNamexx
)}
)

OriginalPostID-230951

  Discussion posts and replies are publicly visible

Parents
  • First there is a spell error in a!documentImage. Hope you are taking the document from a constant or using a rule input variable of type Document here. Providing the document name as text wont work here. Are you using it within a rich text component? Something like this,

    a!richTextDisplayField(
    value: a!richTextImage(
    value: {
    a!documentImage(
    document: xxdocumentNamexx
    )
    }
    )
    )

    If yes and still issue exist, please paste your complete code.
Reply
  • First there is a spell error in a!documentImage. Hope you are taking the document from a constant or using a rule input variable of type Document here. Providing the document name as text wont work here. Are you using it within a rich text component? Something like this,

    a!richTextDisplayField(
    value: a!richTextImage(
    value: {
    a!documentImage(
    document: xxdocumentNamexx
    )
    }
    )
    )

    If yes and still issue exist, please paste your complete code.
Children
No Data