buttonWidget

I got few questions on buttonWidget.

1) a!buttonWidget(

label:"Groups"

)

The label defined inside buttonWidget always displays in Upper case on Interface. Is there any workaround to show the label in the lower case?

 

2)a!buttonWidget(

label:"+"

)

Is there any work around to increase the size of the "+" sign inside the button layout without increasing the button size?

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Associate Developer

    For this question I used below logic and achieve my requirement.

    a!columnsLayout(
    columns: {
    a!columnLayout(
    contents: {
    a!cardLayout(
    height: "",
    contents: {
    a!sideBySideLayout(
    alignVertical: "MIDDLE",
    spacing: "DENSE",
    items: {
    a!sideBySideItem(
    item: a!richTextDisplayField(
    labelPosition: "COLLAPSED",
    align: "RIGHT",
    value: a!richTextIcon(
    icon: "plus",
    size: "MEDIUM",
    color: "POSITIVE",
    linkStyle: "STANDALONE"
    )
    )
    ),
    a!sideBySideItem(
    width: "MINIMIZE",
    item: a!richTextDisplayField(
    labelPosition: "COLLAPSED",
    align: "RIGHT",
    value: a!richTextItem(
    text: upper(" Create Hiring Plan"),
    size: "MEDIUM",
    linkStyle: "STANDALONE"
    )
    )
    )
    }
    )
    }
    )
    }
    ),
    a!columnLayout(contents: {}),
    a!columnLayout(contents: {}),
    a!columnLayout(contents: {}),
    a!columnLayout(contents: {})
    }
    )

  • 0
    Certified Lead Developer
    in reply to baji mekala

    Makes it more readable ...

Reply Children
No Data