customize textbox color outline

Hi,

Is there a way to change or customize texbox outline color? 

  Discussion posts and replies are publicly visible

Parents
  • +1
    Certified Associate Developer
    4 months ago

    nope , but you can put the text field inside a card and change the background color of card according you your need

     a!cardLayout(
                contents: {
                  a!textField(
                    label: "",
                    labelPosition: "ABOVE",
                    saveInto: {},
                    refreshAfter: "UNFOCUS",
                    validations: {}
                  )
                },
                height: "AUTO",
                style: "ACCENT",
                marginBelow: "STANDARD"
              )

Reply
  • +1
    Certified Associate Developer
    4 months ago

    nope , but you can put the text field inside a card and change the background color of card according you your need

     a!cardLayout(
                contents: {
                  a!textField(
                    label: "",
                    labelPosition: "ABOVE",
                    saveInto: {},
                    refreshAfter: "UNFOCUS",
                    validations: {}
                  )
                },
                height: "AUTO",
                style: "ACCENT",
                marginBelow: "STANDARD"
              )

Children