How to build an editable pop-up window

Certified Associate Developer

Hi,

We have built a pop-up  window that can only display text.

but now we would like to make an editable window like grids or another interface.

This is the code we have written to display the text, if we want to display an interface with input box for example, how to make it?

a!buttonArrayLayout(
buttons: {
a!buttonWidget(
label: "Button",
style: "NORMAL",
confirmHeader: "test",
confirmMessage: ri!sample,
confirmButtonLabel: "submit",
cancelButtonLabel: "cancel"
)
},
align: "START"
)

 

Thanks 

  Discussion posts and replies are publicly visible

Parents
  • What you have built here is the default optional 'Confirmation' dialog that gets displayed to give a user a chance to confirm the action they've initiated. You cannot make this editable.

    If you want a modal window that you can use to capture some data you need to build a record action on a Record. The record action triggers a process model and in the process model you can fetch some data (if some already exists) and display that data in the interface of a User Input Task. 

Reply
  • What you have built here is the default optional 'Confirmation' dialog that gets displayed to give a user a chance to confirm the action they've initiated. You cannot make this editable.

    If you want a modal window that you can use to capture some data you need to build a record action on a Record. The record action triggers a process model and in the process model you can fetch some data (if some already exists) and display that data in the interface of a User Input Task. 

Children
No Data