I am developing a mobile application with Tapestry 5. Sometimes, when entering data on a form, I need to display another page (some kind of look-up) where the user can eventually select some value that needs to be brought back to the original form. For desktop web applications, I could implement the look-up page with an iframe so that the user doesn't need to leave the original form. Now, with the mobile application where I can't use iframe, I need some way to suspend the form, saving the state of the form as is without validating anything. Upon returning from the look-up page, I need to restore the form to the state it was in when the user opened the look-up page. What is the best way to do this in Tapestry?
Benny