Save Data At The end of wizard of three form

if i have three form on web/notes after compliting first form on click on button named next it should go to form two, same like one, after filling data it should go to form three then on ther 3rd form a button named called save, on click of that all the data should be saved & if user feel to go to privious form before submit all data he could be go to privious one without saving individual form`s data one by one.

“ALL 3 FORMS DATA SHOULD BE SAVE AT LAST IN ONE SHOT ONLY”

Subject: Save Data At The end of wizard of three form.

To make it even simpler, why don’t you have all the fields in ONE form and hide the appropriate section using HideWhens(Notes)/Div Tags or Layers(Web) ?

Subject: Save Data At The end of wizard of three form.

You can’t stop the document being saved if you need to do a round trip to the server. If you do, then step 2 will lose the data from step 1 etc.

Well, you can, but you’d have to put ALL the data you need to maintain into the Query string of the URL request, and each form would need to parse it out and write into the various relevant fields. This can be quite a laborious task.

The best bet is to use a temporary document or status.

When the user moves from step 1 to step 2, the document is saved with a flag that marks it as “In Progress” or “incomplete”.

When clicking “save” at step 3, the status would change to “Submitted”

You can then write an agent to delete any documents which have been abandonded in the “incomplete” status (i.e. over a few hours old).

HTH

Kiers

Subject: RE: Save Data At The end of wizard of three form.

ooh - just re-read LoNo’s post - I’d missed the bit about Web Layers - that’s your only other option (and fits your specs best)- it keeps all the wizard progression totally client side so then the final save would be the document submission to the server.

Subject: RE: Save Data At The end of wizard of three form.

Exactly !!Layers in R6 work like a treat.