Create Summery Wizard

HI Plumsails Community,
I'm using a wizard template to create an SharePoint Item, in each wizard step you can fill out one field. Is there a way to create a summary ad the end of the wizard. So that the user can see all fields he/she has filled out.

Thank you in advance

Hi,

Yes, it's possible. I implemented this on my forms.

You can disable fields in the final wizard and show the user what they entered.

In the application,

  1. Add a Plumsail Common Field
  2. Add code below to JS editor
fd.rendered(function(){

   fd.field('FIELD2').disabled = true
	fd.field('FIELD1').$on('change', function() {
 	fd.field('FIELD2').value = fd.field('FIELD1').value; 
	})

});

Check out the links below: