Submit button not working - Milestone interface pattern.

Certified Associate Developer

Hello everyone.

I need help.

Am working on a process model for a MILESTONE (BAR) PATTERN interface. When I lunch "Start Process for Debugging", the MILESTONE form load for me to input data. After inputting data, I click next and the next step load until I get to the final step, and I click the submit but nothing happens when I click the submit button. The submit button will not submit the form. Thank you for your assistance.

a!columnsLayout(
columns: {
a!columnLayout(
contents: {
a!buttonArrayLayout(
buttons: {
a!buttonWidget(
label: "Back",
value: local!currentMilestoneBarStep - 1,
saveInto: local!currentMilestoneBarStep,
style: "NORMAL",
showWhen: local!currentMilestoneBarStep > 1
),
a!buttonWidget(
label: cons!GCO_TEXT_VALUE_CANCEL,
style: if(
local!currentMilestoneBarStep = 1,
"NORMAL",
"LINK"
)
)
},
align: "START"
)
}
),
a!columnLayout(
contents: {
a!buttonArrayLayout(
buttons: a!buttonWidget(
label: if(
local!currentMilestoneBarStep = length(local!milestoneBarSteps),
"Submit",
"Next"
),
saveInto: if(
local!currentMilestoneBarStep = length(local!milestoneBarSteps),
{ },
a!save(
local!currentMilestoneBarStep,
local!currentMilestoneBarStep + 1
)
),
style: "PRIMARY"
)
)
}

  Discussion posts and replies are publicly visible

Parents Reply Children
No Data