9.6 KiB
Forms in PDFKit
Forms are interactive features of the PDF format. They make it possible to
add annotations such as text fields, combo boxes, buttons and actions. To
include Forms in the PDF that you are generating you must call the document
initForms() method.
initForms()- Must be called before adding any forms or fields to the document.
doc.font('Helvetica'); // establishes the default form field font
doc.initForms();
Forms Methods
Form elements are Widget Annotations and are added using the document
widgetAnnotation method. Additional methods listed below are shortcut methods
that call the widgetAnnotation method. The list of the available Widget
Annotation document methods is:
widgetAnnotation( name, x, y, width, height, options)formText( name, x, y, width, height, options)formPushButton( name, x, y, width, height, name, options)formRadioButton( name, x, y, width, height, options)formChoice( name, x, y, width, height, options)
Each field is given a name that is used to identify the form field. Field
names are hierarchical using a period ('.') as a separaror (e.g.
shipping.address.street). More than one form field can have the same name.
When this happens, the fields will have the same value. There is more
information on name in the Field Names section below.
Options Parameter
Common Options
Widget Annotation options that are common across all field types are:
required[boolean] - The field must have a value by the time the form is submitted.noExport[boolean] - The field will not be exported if a form is submitted.readyOnly[boolean] - The user may not change the value of the field, and the field will not respond to mouse clicks. This is useful for fields that have computed values.value[number|string] - The field's value.defaultValue[number|string] - The default value to which the field reverts if a reset-form action is executed.
Some Widget Annotations have a color option that can be specified. You can use
an array of RGB values, a hex color, or a named CSS color value for that option.
backgroundColor- field background colorborderColor- field border color
Text Field Options
align[string] - Sets the alignment toleft,centerorright.multiline[boolean] - Allows the field to have multiple lines of text.password[boolean] - The text will be masked (e.g. with asterisks).noSpell[boolean] - If set, text entered in the field is not spell-checkedformat[object] - See the section on Text Field Formatting below.
doc.formText('leaf2', 10, 60, 200, 40, {
multiline: true,
align: 'right',
format: {
type: 'date',
params: 'm/d'
}
});
Choice Field Options
combo[boolean] - If set, the field is a combo box, otherwise it is a list box.edit[boolean] - For combo boxes, allows for the user to enter a value in the field.sort[boolean] - The field options will be sorted alphabetically.noSpell[boolean] - If set, text entered in the field is not spell-checked.choices[array] - Array of choices to display in the combo box.
opts = {
choices: ['', 'github', 'bitbucket', 'gitlab'],
value: '',
defaultValue: '',
align: 'left',
combo: true
};
doc.formChoice('ch1', 10, y, 100, 20, opts);
Button Field Options
label[string] - For buttons, sets the label text.pushButton[boolean] - If set, the field is a pushbutton that does not retain a permanent value.radioButton[boolean] - If set, the field is a set of radio buttons; if clear, the field is a checkbox. This flag is meaningful only if thepushbuttonflag is not true.toggleToOffButton[boolean] - For Radio Buttons, if set, then exactly one radio button will be selected at one time.
var opts = {
backgroundColor: 'yellow',
label: 'Test Button'
};
doc.formPushButton('btn1', 10, 200, 100, 30, opts);
Text Field Formatting
When needing to format the text value of a Widget Annotation, the following
options are available. This will cause predefined document JavaScript actions
to automatically format the text. Refer to the section on Formatting scripts
in the Acrobat SDK documentation for the Acrobat Forms
Plugin
for more information.
Add a format dictionary to options. The dictionary will contain a type and optional additional formatting.
format- generic objectformat.type- value must be one ofdate,time,percent,number,zip,zipPlus4,phoneorssn.
The types date, time, percent and number have additional formatting.
Date format
format.param- value must be one of the stringsm/d,m/d/yy,mm/dd/yy,mm/yy,d-mmm,d-mmm-yy,dd-mmm-yy,yy-mm-dd,mmm-yy,mmmm-yy,mmm d, yyyy,mmmm d, yyyy,m/d/yy h:MM tt, orm/d/yy HH:MM.
// Date text field formatting
doc.formText('field.date', 10, 60, 200, 40, {
align: 'center',
format: {
type: 'date',
param: 'mmmm d, yyyy'
}
});
Time format
format.param- value must be a number between 0 and 3, representing the formats "14:30", "2:30 PM", "14:30:15" and "2:30:15 PM".
// Time text field formatting
doc.formText('field.time', 10, 60, 200, 40, {
align: 'center',
format: {
type: 'time',
param: 2
}
});
Number and percent format
format.nDec[number] - the number of places after the decimal pointformat.sepComma[boolean] - display a comma separatorformat.negStyle[string] (numberonly) - the value must be one ofMinusBlack,Red,ParensBlack,ParensRedformat.currency[string] (numberonly) - the currency symbolformat.currencyPrepend[boolean] (numberonly) - set to true to prepend the currency symbol
// Currency text field formatting
doc.formText('leaf2', 10, 60, 200, 40, {
multiline: true,
align: 'right',
format: {
type: 'number',
nDec: 2,
sepComma: true,
negStyle: 'ParensRed',
currency: '$',
currencPrepend: true
}
});
Advanced Form Field Use
Forms can be quite complicated and your needs will likely grow to sometimes need
to directly specify the attributes that will go into the Widget Annotation or
Field dictionaries. Consult the PDF Reference and set these attributes in
the options object. Any options that are not listed above will be added
directly to the corresponding PDF Object.
Other Methods
The font used for a Widget Annotation is set using the document.font method.
Yes that's the same method as is used when setting the text font.
In support of Widget Annotations that execute JavaScript in PDF, you can use the following document method:
addNamedJavaScript( name, string )
Field Names
Widget Annotations are, by default, added to the Catalog's Form dictionary
as an array of Fields. Fields are organized in a name heirarchy, for example
shipping.address.street. You can either set the name of each Widget
Annotation with the full name (e.g. shipping.address.street) or you can create
parent Fields. In this example you might have a shipping field that is added
to the Form Fields array, an address field that refers to the shipping
Field as it's parent, and a street Widget Annotation that would refer to the
address field as it's parent. To create a field use the document method:
field( name, options )- returns a reference to the field
To specify the parent of a Field or Widget Annotation, set the parent
options to the field reference.
Example PDF using field hierarchy, three text fields and a push button.
doc.font('Helvetica'); // establishes the default font
doc.initForms();
let rootField = doc.field('rootField');
let child1Field = doc.field('child1Field', { Parent: rootField });
let child2Field = doc.field('child2Field', { Parent: rootField });
doc.formText('leaf1', 10, 10, 200, 40, {
Parent: child1Field,
multiline: true
});
doc.formText('leaf2', 10, 60, 200, 40, {
Parent: child1Field,
multiline: true
});
doc.formText('leaf3', 10, 110, 200, 80, {
Parent: child2Field,
multiline: true
});
var opts = {
backgroundColor: 'yellow',
label: 'Test Button'
};
doc.formPushButton('btn1', 10, 200, 100, 30, opts);
The output of this example looks like this.
Limitations
It is recommended that you test your PDF form documents across all platforms and viewers that you wish to support.
Form Field Appearances
Form elements must each have an appearance set using the AP attribute of the
annotation. If this attribute is not set, the form element's value may not be
visible. Because appearances can be complex to generate, Adobe Acrobat has an
option to build these apperances from form values and Widget Annotation
attributes when a PDF is first opened. To do this PDFKit always sets the Form dictionary's
NeedAppearances attribute to true. This could mean that the PDF will be
dirty upon open, meaning it will need to be saved.
The NeedAppearances flag may not be honored by all PDF viewers.
Some form documents may not need to generate appearances. This may be the case for text Widget Annotations that initially have no value. This is not true for push button widget annotations. Please test
Document JavaScript
Many PDF Viewers, aside from Adobe Acrobat Reader, do not implement document JavaScript. Even Adobe Readers may not implement document JavaScript where it is not permitted by a device's app store terms of service (e.g. iOS devices).
