is POP Up possible in Interface

Hi All,

Is there is any possibility for pop up from interface field.

I have a requirement, that when I click on link field I should get a pop up. Pop up should contain a form or section.

Thanks

Pradeep

  Discussion posts and replies are publicly visible

Parents
  • Hi Pradeep,
    There is no pop up in Appian on click of link, but there is a work around to acheive this functionality
    1 On click of link hide all existing section
    load(
    local!flag: false(),
    a!linkField(
    links: {
    a!dynamicLink(
    label: "Link",
    value: not(
    local!flag
    ),
    saveInto: local!flag
    )
    }
    ),
    {
    if(
    local!flag = true(),
    rule!Interface1,
    rule!Interface2
    )
    }
    )
    2 Use a!startProcessLink, it will open an asynchronous process in new tab.
Reply
  • Hi Pradeep,
    There is no pop up in Appian on click of link, but there is a work around to acheive this functionality
    1 On click of link hide all existing section
    load(
    local!flag: false(),
    a!linkField(
    links: {
    a!dynamicLink(
    label: "Link",
    value: not(
    local!flag
    ),
    saveInto: local!flag
    )
    }
    ),
    {
    if(
    local!flag = true(),
    rule!Interface1,
    rule!Interface2
    )
    }
    )
    2 Use a!startProcessLink, it will open an asynchronous process in new tab.
Children
No Data