Pass object to secondary page and return

Hi guys,

I need to pass an object from one page to secondary page. That page could modify the object and, when closed, I need to access the modified object from first page.
I saw that dialog has possibility to give us a return value but is about buttons used to close it. I need to recover edited object in secondary page from first page, all in memory, not saving data in DB. It`s this possible?

Thanks in advance.

You should use the Close dialog action and pass that object as the Result.


Handle the Then event of the Open dialog action and use the ${result} as you want.

Works like a charm.

Thank you!