Trying to chain together two sail form, and I'm not able to get the previous

Trying to chain together two sail form, and I'm not able to get the previous button to appear on the second form. I have done this in the past on portal forms numerous time, and am wondering if there is specific code needed on the sail form to allow the 'Previous' button to appear?...

OriginalPostID-115989

OriginalPostID-115989

  Discussion posts and replies are publicly visible

Parents
  • Yes...
    - emabled chaining between the two nodes.
    - checked the "Allow user to step back" in the Other tab.
    - And am using a very simple sail form for both nodes (see below).

    =load(
    local!priority,
    a!formLayout(
    label: "Loan",
    firstColumnContents: {
    a!sectionLayout(
    label: "Input ",
    firstColumnContents: {
                         a!buttonLayout(
                                  primaryButtons: {
                                   a!buttonWidgetSubmit(
                                            label: "Submit",
                                            value: null,
                                            saveInto: local!priority
                                   )
                                  }
                         )
                        }
    )
    }
    )
    )
Reply
  • Yes...
    - emabled chaining between the two nodes.
    - checked the "Allow user to step back" in the Other tab.
    - And am using a very simple sail form for both nodes (see below).

    =load(
    local!priority,
    a!formLayout(
    label: "Loan",
    firstColumnContents: {
    a!sectionLayout(
    label: "Input ",
    firstColumnContents: {
                         a!buttonLayout(
                                  primaryButtons: {
                                   a!buttonWidgetSubmit(
                                            label: "Submit",
                                            value: null,
                                            saveInto: local!priority
                                   )
                                  }
                         )
                        }
    )
    }
    )
    )
Children
No Data