Buttons with tounded corners?

Hello,

I would like to know if there is a way to represent buttons with rounded corners in Appian.

Thanks

  Discussion posts and replies are publicly visible

Parents
  • Hi Mario, buttons with rounded corners is not available in Appian. Download buttons with rounded corners images and save it in your constant, once try the below code it might help for you.

    a!sideBySideLayout(
    items: {
    a!sideBySideItem(
    width: "AUTO",
    item:
    a!imageField(
    images: a!documentImage(
    document: cons!BR_BUTTONS
    )
    )
    ),
    a!sideBySideItem(
    width: "3X",
    item:
    a!imageField(
    images: a!documentImage(
    document: cons!BR_BUTTONS
    )
    )
    )
    }
    )
Reply
  • Hi Mario, buttons with rounded corners is not available in Appian. Download buttons with rounded corners images and save it in your constant, once try the below code it might help for you.

    a!sideBySideLayout(
    items: {
    a!sideBySideItem(
    width: "AUTO",
    item:
    a!imageField(
    images: a!documentImage(
    document: cons!BR_BUTTONS
    )
    )
    ),
    a!sideBySideItem(
    width: "3X",
    item:
    a!imageField(
    images: a!documentImage(
    document: cons!BR_BUTTONS
    )
    )
    )
    }
    )
Children