Extends
Members
Members
Optional actions to execute when an event is triggered.
Type:
- Inherited From:
- Default Value:
- null
Holds an immutable list of PSPDFKit.Annotations.WidgetAnnotation#ids.
Type:
- Immutable.List.<string>
- Inherited From:
This property defines whether the user has permission to edit the group of this form field. The value of this field depends on the set of collaboration permissions defined in the JWT token.
It is only available when collaboration permissions is enabled on Server-Backed deployments.
Type:
- boolean
- Inherited From:
If true, the new value is committed as soon as a selection is made, without requiring the user to exit the field. Otherwise, the new value is not committed until the user exits the field.
Please note that PSPDFKit.Instance#getFormFieldValues will not return the latest value for this field until the user leaves this field by default. If you want this value to update on every change then set this to true.
Type:
- boolean
- Inherited From:
- Default Value:
- false
Similar to the value
property. The default values are only used when a form needs to be reset.
Type:
- Immutable.List.<string>
- Inherited From:
This property is used to define the permission scope for this form-field, it's corresponding widget-annotations and form field values. If you change the group
of a form field, the corresponding widget annotations and form field values will inherit it.
It is only available when collaboration permissions is enabled on Server-Backed deployments.
Type:
- string
- Inherited From:
A unique identifier to describe the form field record. When a form field is created in the UI, the viewer has to generate a unique ID.
When changes are saved to the underlying form field provider, we call PSPDFKit.Instance#ensureFormFieldSaved to make sure the form field has been persisted from the provider.
Type:
- string
- Inherited From:
This property defines whether this form field can be deleted or not. The value of this field depends on the set of collaboration permissions defined in the JWT token.
It is only available when collaboration permissions is enabled on Server-Backed deployments.
Type:
- boolean
- Inherited From:
This property defines whether this form-field can be edited or not. The value of this field depends on the set of collaboration permissions defined in the JWT token.
It is only available when collaboration permissions is enabled on Server-Backed deployments.
Type:
- boolean
- Inherited From:
This property defines whether this form-field can be filled or not. The value of this field depends on the set of collaboration permissions defined in the JWT token.
It is only available when collaboration permissions is enabled on Server-Backed deployments.
Type:
- boolean
- Inherited From:
Used to identify the form field in the UI or for accessibility.
Type:
- string
- Inherited From:
If true, more than one of the field’s option items may be selected simultaneously. Otherwise, no more than one item at a time may be selected.
Type:
- boolean
- Inherited From:
- Default Value:
- false
Unique name of the form field (often referred to as fully qualified name). This name is used to link PSPDFKit.Annotations.WidgetAnnotation and is also used as an identifier for form field values.
Type:
- string
- Inherited From:
Form fields with the noExport
flag won't appear in the serialized payload of a form
submission.
Type:
- boolean
- Inherited From:
- Default Value:
- false
A list of PSPDFKit.FormOptions. This is necessary for multiple check boxes in a group.
See PSPDFKit.FormOption for more information.
Type:
- Immutable.List.<PSPDFKit.FormOption>
- Inherited From:
The object ID of the form field object in the PDF.
Type:
- number
- Inherited From:
Read only form fields can not be filled out (similar to disabled HTML input elements).
Type:
- boolean
- Inherited From:
- Default Value:
- false
Required form fields must be filled out in order to submit the form.
PSPDFKit.FormFields.TextFormField, PSPDFKit.FormFields.ComboBoxFormField and
PSPDFKit.FormFields.ListBoxFormField with this flag set will be rendered with
the PSPDFKit-Annotation-Widget-Required
public CSS class and the HTML required
attribute set.
Type:
- boolean
- Inherited From:
- Default Value:
- false
An immutable list of all selected form option values. If no options are defined, a checked
check box will have values: List(["Yes"]);
.
If the list is empty, no check box is checked.
In order to modify it, instance.setFormFieldValues() should be used.
Type:
- Immutable.List.<string>
- Inherited From: