Question
Process model is not initiating on click of button from a!gridLayout()
I am trying to execute a process model on click of button which one of the component in editable grid. Unfortunately. the PM is not getting initiated.
Can anyone help what could be the reason.
a!buttonLayout(
primaryButtons: {
a!buttonWidget(
label: "Save",
saveInto: a!startProcess(
processModel:cons!TRA_WriteRecordsPM,
processParameters: {recordTRA:fv!item},
onSuccess: a!save(local!success,fv!processInfo),
/*onError: a!save(local!data)*/
),
submit: true()
)
}
),
