How can I change my billboard image in interface?

Certified Associate Developer

I have been trying to change my billboard image of interface, I have uploaded a image in my folder but dont know how to use that in my interface billboard.. can anyone please explain?

thank you

  Discussion posts and replies are publicly visible

Parents
  •  a!billboardLayout(
                backgroundMedia: a!documentImage(
                  document: cons!WR_NITIN
                ),
                backgroundColor: "#f0f0f0",
                overlay: a!barOverlay(
                  contents: {
                    a!richTextDisplayField(
                      labelPosition: "COLLAPSED",
                      value: {
                        "TEVA`S   Hotel"
                      }
                    )
                  }
                )
              )

    Hello Rahul, you can see the code I have sent,

    In these first you have to create a document from new objects and then there is a checkbox click on it than it creates a constant automatically and then inherit that constant in your billboard layout.

Reply
  •  a!billboardLayout(
                backgroundMedia: a!documentImage(
                  document: cons!WR_NITIN
                ),
                backgroundColor: "#f0f0f0",
                overlay: a!barOverlay(
                  contents: {
                    a!richTextDisplayField(
                      labelPosition: "COLLAPSED",
                      value: {
                        "TEVA`S   Hotel"
                      }
                    )
                  }
                )
              )

    Hello Rahul, you can see the code I have sent,

    In these first you have to create a document from new objects and then there is a checkbox click on it than it creates a constant automatically and then inherit that constant in your billboard layout.

Children