Data from prompt alert to invoking page

Hi,

Is there way to get the data collected in the prompt alert to invoking page?

check this link

Yes, you can use the response value.

text: 'Cancel',
handler: data => {
     console.log('Cancel clicked');
     console.log(data);
     console.log(JSON.stringify(data));
     console.log(data.title);
}
1 Like

@pixello, Got it thank you.

1 Like

Can you set this topic as solved? Thanks :slight_smile: