Image field

Hi Everyone, In image field i need to put text beside of the image, is it possible?

  Discussion posts and replies are publicly visible

  • Hi Deviratnamv,
    please try this code
    a!richTextDisplayField(
    label:"",
    value:{
    a!richTextItem(text: "Hello World ", style: "STRONG"),
    a!richTextImage(
    image:
    a!documentImage(
    document:todocument(157949),
    altText: "not",
    caption: "image"
    )
    ),
    a!richTextItem(text: char(13), style: "STRONG"),
    a!richTextIcon(
    icon:"address-book",
    size:"STANDARD"
    ),
    a!richTextItem(text: "World", style: "STRONG")
    }
    )
    Please let us know if you have any other requirement