I'm building my process model and I'm encountering a problem during execution. Although I'm not receiving any errors, it's getting stuck at the first user task input. How can I resolve this?

  Discussion posts and replies are publicly visible

Parents Reply
  • This is the code configuration for a button used as text. The text value of the button is updated dynamically when the user clicks on it. a!columnLayout(
    contents: {
    a!buttonArrayLayout(
    buttons: {
    a!buttonWidget(
    label: "S'inscrire",
    icon: "address-card",
    style: "OUTLINE",
    color: "SECONDARY",
    saveInto:a!save(ri!button,"S'inscrire")
    )
    },
    align: "START",
    marginBelow: "NONE"
    )
    }
    )

    and this is a screen shot of button value after testing it on the interface 

Children