I have a pipeline which I would like to work like this
Section A
- User navigates to form A. Selects some pictures for upload
- Form is submitted, images are uploaded, processed with Java in the backend and returned to user in summary page A
- User selects which photos to further process then clicks "Further process selected"
Section B
- Selected photos from A.3 are processed and displayed along with form B
- User selects some more options and submits
- Photos are displayed in form B's summary page (summary page B)
I have section A implemented. The paths to the images are stored in form A's model. In summary A, when the user checks a photo, a javascript array variable is updated with the selected images' paths What I am having trouble with passing this javascript variable to form B
Is this possible? is there an alternative? Please let me know if I haven't explained my self well
Thanks
