Community Tip - Learn all about PTC Community Badges. Engage with PTC and see how many you can earn! X
This is going to be a bit complicated to explain but I'll try my best. 🙂
I have a wizard (wiz1)that contains a mvc table. The table has a toolbar which lauches another wizard (wiz2)for uploading a file. Once I'm done uploading the file, the wizard (wiz2) closesand would like to populate the table on wiz1with the information within the file I just uploaded. Makes sense, right? 🙂
My question is, how do I pass the information from wiz2 back to wiz1 and the table? I've been diving through the Customization guide and Help Center, but there is a massive amount of information so I'm just looking for a step in the right direction.
Thanks!
~Jamie
Your wizard contains "commadBean" object if it contains begin.jspf and end.jspf.
In such a case you can use commandBean.getSelectedXXXX() or .getXXX() , to capture the details of the files your browsed.
Also , you can try to work with the request/resspose between the jsp's.