a!startProcessLink() open in a different/new tab?

Is there way when we click on a!startProcessLink() it opens in a different tab rather than the same tab?

I can do right click and open in new tab and it works. But i want to do this automatically on click of the link.

  Discussion posts and replies are publicly visible

Parents
  • +1
    Certified Senior Developer
    The following approach is not recommended, because the parameters might change anytime without prior notice.

    load(
    local!startLink: a!startProcessLink(
    processModel: [Process Model Constant],
    processParameters: [Parameters for the Process]
    ),
    a!linkField(
    links: a!safeLink(
    label: "Open",
    uri: "[Appian Site URL]/suite/tempo/start-process/" & local!startLink.processModelOpaqueId & "?parameters=" & local!startLink.cacheKey
    )
    )
    )
Reply
  • +1
    Certified Senior Developer
    The following approach is not recommended, because the parameters might change anytime without prior notice.

    load(
    local!startLink: a!startProcessLink(
    processModel: [Process Model Constant],
    processParameters: [Parameters for the Process]
    ),
    a!linkField(
    links: a!safeLink(
    label: "Open",
    uri: "[Appian Site URL]/suite/tempo/start-process/" & local!startLink.processModelOpaqueId & "?parameters=" & local!startLink.cacheKey
    )
    )
    )
Children