
On Newrecord event of a page (e.g., Vendor Card page), I am calling function that will run a page modally (page.runmodal(<pageid>)). On close of that modal page, I want to return some values from that modal page into the calling page. How do I make this happen?
*This post is locked for comments
I have the same question (0)Hello all. I somehow figured this out. I ended up working around the problem of the modal page not being able t pass values back to the calling page. I ended up creating a temp record in a table. Then after modal page closes, I retrieve the temp record which takes care of the values I needed. then lastly, I delete the temp record. Not very pretty...but it will do for now.