Need some help on POP-UP!!!

Certified Associate Developer

Hi,

Is there any functionality in Appian to show pop-up??

If not, how can we show a pop-up without using interface and button confirmation??

Thanks in advance,

Gousii.

  Discussion posts and replies are publicly visible

  • 0
    Certified Lead Developer

    Hi Shaik, if you want to show any interface as a pop up then create actions to that particular record and attach an interface to that action.
    And in case you just want a pop-up interface for confirmation purposes before completing an action or moving to another interface then use
    "comfirmHeader" parameter available in a!buttonWidget() component.

  • +1
    Certified Lead Developer

    I will post an article on my blog soon. It includes an example of how to show a pop-up window in Appian. This is not rocket science, you just have to hide your UI and show a card layout with shadows enabled instead.

    Find the example below:

    Fullscreen
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    a!localVariables(
    local!showPopup: false,
    {
    a!sectionLayout(
    showWhen: not(local!showPopup),
    contents: {
    a!textField(
    label: "Text",
    ),
    a!paragraphField(
    label: "Paragraph",
    ),
    a!buttonArrayLayout(
    buttons: {
    a!buttonWidget(
    label: "Show Popup!",
    icon: "arrow-right",
    value: true,
    saveInto: local!showPopup,
    style: "PRIMARY"
    )
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

  • 0
    Certified Lead Developer
    in reply to Stefan Helzle

    Hi Stefan, this is rocket science. Grin As we have asked to display the pop-up, not the "fake pop-up" screen. As the common understanding, pop up should look like this - 

  • 0
    Certified Lead Developer
    in reply to tushark8069

    Only option in that case is a Record Action that opens in a dialog.

  • 0
    Certified Lead Developer
    in reply to tushark8069

    LOL ... I know. But I do not know of any official definition of how a pop-up has to look like. And I think that it is more about the purpose in terms of UX, than the looks in terms of UI.

  • 0
    Certified Lead Developer
    in reply to minhol9982

  • instead of a record type. A site is a custom web page that you can create in Appian to display interfaces, reports, or processes. You can use a site to display your read-only interface and add a link or button to open the record summary view in a new tab or window. This way, the user can easily go back to the site by closing the tab or window.

  • instead of a record type. A site is a custom web page that you can create in Appian to display interfaces, reports, or processes. You can use a site to display your read-only interface and add a link or button to open the record summary view in a new tab or window. This way, the user can easily go back to the site by closing the tab or window.