Question about launching a process start form through an interface button

A Score Level 2

Hello,

Is it possible to launch a process start form using a button? I'm aware for buttons we can kickoff processes using a!startProcess in the saveInto parameter, but it doesn't appear a!startProcess observes start forms. I know for icons we use a!startProcessLink and that launches the process with start form perfectly fine, but I can't make it work with buttons. Any help is greatly appreciated! Thanks

  Discussion posts and replies are publicly visible

Parents
  • A late response but maybe usefull for other. This code simulate a button:

    a!cardLayout(
    contents: {
    a!richTextDisplayField(
    align: "CENTER",
    labelPosition: "COLLAPSED",
    value: {
    a!richTextIcon(
    icon: ri!icon
    ),
    a!richTextItem(
    text: {" " & upper(ri!label)},
    style: "STRONG",
    color: "SECONDARY",
    link: a!startProcessLink(
    label: upper(ri!label),
    processModel: ri!.process,
    processParameters: ri!processParameters
    )
    )
    }
    )
    },
    tooltip: ri!tooltip,
    height: "AUTO",
    style: "NONE",
    shape: "SQUARED",
    padding: "LESS",
    marginBelow: "STANDARD"
    ),

Reply
  • A late response but maybe usefull for other. This code simulate a button:

    a!cardLayout(
    contents: {
    a!richTextDisplayField(
    align: "CENTER",
    labelPosition: "COLLAPSED",
    value: {
    a!richTextIcon(
    icon: ri!icon
    ),
    a!richTextItem(
    text: {" " & upper(ri!label)},
    style: "STRONG",
    color: "SECONDARY",
    link: a!startProcessLink(
    label: upper(ri!label),
    processModel: ri!.process,
    processParameters: ri!processParameters
    )
    )
    }
    )
    },
    tooltip: ri!tooltip,
    height: "AUTO",
    style: "NONE",
    shape: "SQUARED",
    padding: "LESS",
    marginBelow: "STANDARD"
    ),

Children
No Data