Skip to main content
December 1, 2022
Solved

interaction between two interfaces

  • December 1, 2022
  • 3 replies
  • 1 view

I have two interfaces and want to switch between them but my process variable doesn't interact.

when I click the "Edit Mode" button in the interface, the process variable doesn't change and the process stays in view mode.

Best answer by alexandru.boerescu

try setting the submit attribute on your button:

a!buttonWidget(
  label: "edit mode",
  value: "edit",
  saveInto: ri!button,
  submit: true(),
  style: "PRIMARY"
)

3 replies

azeemm0001
December 1, 2022

Check if you are correctly passing the values in both Forms and Data (Input) tabs of "View Mode" interface

alexandru.boerescu
December 1, 2022

try setting the submit attribute on your button:

a!buttonWidget(
  label: "edit mode",
  value: "edit",
  saveInto: ri!button,
  submit: true(),
  style: "PRIMARY"
)

amitf1507Author
December 1, 2022

yes, now its works! thanks [emoticon:c4563cd7d5574777a71c318021cbbcc8]