Hi,
Is there way to get the data collected in the 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);
}
@pixello, Got it thank you.
Can you set this topic as solved? Thanks