Checkboxes in the form to SPChoice selection

When you have multiple checkboxes group in your PDF form which are supposed to be mapped to the multiple choice SPChoice column in SharePoint you might need a bit of magic to do this using On Submit event script. Step 1. In Form Designer use On Submit event to insert Custom Script before Save Form action:   Step 2. Then add the following script: //saving single selection string choiceValue = ""; if(data.resolveNode("Fire").value ==...

Read More