Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

How do I create a form such that the document set is returned when returnedwhen the form is submitted?

First get a hold of the corresponding FormTypeEntry and then specify the _formActionDocs parameter as true when creating the FormEntry.

...

Note

The _formActionDocs parameter is only supported by .Net Client API version 5.1 Patch 3 and later.

 

How do I receive the document set (including attachments) for the Form when submitted?

 

How do I pre-populate values when creating an instance?

When creating a form instance, you can supply data to pre-populate fields.  There are a couple of ways to do this.  The first way is to supply a name value collection, which holds control names and values.  The second way is to supply an XML document, with control names and values. Suppose your form has two text fields, named A and B respectively.  Also, suppose you wish to prefill these 2 controls with values, as shown:

Example 1 – using a name value collection

...