How can I help you?
PDF form field flags in JavaScript PDF Viewer
17 Feb 20268 minutes to read
The Syncfusion JavaScript PDF Viewer allows you to control how users interact with form fields and how those fields behave during validation and printing by applying form field flags. These flags define whether a form field can be modified, whether it is mandatory, and whether it appears in printed output.
This topic explains:
- Supported form field flags
- How each constraint affects field behavior
- How to apply flags during field creation
- How to update flags on existing fields
- How flags work with validation and printing
Supported PDF Form Field Flags
The following flags are supported in the PDF Viewer:
-
isReadOnly
Prevents users from modifying the form field in the UI while still allowing updates through APIs. -
isRequired
Marks the form field as mandatory and includes it in form field validation. -
isPrint
Controls whether the form field appears when the document is printed.
Key actions
Make fields read only
Use the isReadOnly property to prevent users from modifying a form field through the UI. This is useful for displaying pre-filled or calculated values that should not be changed by the user.
// Use this setting to make Read-only as Default for new Textbox fields
// pdfviewer.textFieldSettings = { isReadOnly: true };
pdfviewer.documentLoad = function () {
// Read-only Textbox
pdfviewer.formDesignerModule.addFormField('Textbox', {
name: 'EmployeeId',
bounds: { X: 146, Y: 229, Width: 150, Height: 24 },
isReadOnly: true,
value: 'EMP-0001'
});
// Read-only Signature field
pdfviewer.formDesignerModule.addFormField('SignatureField', {
name: 'ApplicantSign',
bounds: { X: 57, Y: 923, Width: 200, Height: 43 },
isReadOnly: true,
tooltip: 'Sign to accept the terms'
});
};Mark fields as required
Use the isRequired property to mark form fields as mandatory. To enforce this constraint, enable form field validation and validate fields before allowing actions such as printing or downloading.
- Enable validation using enableFormFieldsValidation
- Validate fields using validateFormFields()
If required fields are empty, validation can prevent further actions.
// 1) Default for new Textbox fields
pdfviewer.textFieldSettings = { isRequired: true };
// 2) Validation wiring
pdfviewer.enableFormFieldsValidation = true;
pdfviewer.validateFormFields = function (args) {
// Triggers when required fields are empty on submit/validate
if (args && args.formField && args.formField.length > 0) {
alert('Please fill all required fields. Missing: ' + args.formField[0].name);
}
};
// 3) Creation (add a Textbox form field once the document is loaded)
pdfviewer.documentLoad = function () {
pdfviewer.formDesignerModule.addFormField('Textbox', {
name: 'Email',
bounds: { X: 146, Y: 260, Width: 220, Height: 24 },
isRequired: true,
tooltip: 'Email is required'
});
};
// Mount the viewer
pdfviewer.appendTo('#pdfViewer'); // Ensure an element with id="pdfViewer" exists in your HTMLControl print behavior
Use the isPrint property to control whether a form field appears in the printed output of the PDF document.
// 1) Default for new signature fields
pdfviewer.signatureFieldSettings = { isPrint: false };
// 2) Creation (do not print a signature field)
pdfviewer.documentLoad = function () {
pdfviewer.formDesignerModule.addFormField('SignatureField', {
name: 'ApplicantSign',
bounds: { X: 57, Y: 923, Width: 200, Height: 43 },
isPrint: false
});
// 3) Update existing field (toggle to print)
var sign = pdfviewer.formFieldCollections.find(function (f) { return f && f.name === 'ApplicantSign'; });
if (sign) {
pdfviewer.formDesignerModule.updateFormField(sign, { isPrint: true });
}
};
pdfviewer.appendTo('#pdfViewer'); // Ensure <div id="pdfViewer"></div> existsNOTE
Printing can be triggered programmatically using
pdfviewer.print(). Form fields withisPrint: falseare excluded from the printed output.
Apply PDF form field flags using the UI
Steps
- Enable Form Designer mode in the PDF Viewer.
- Select an existing form field on the PDF page.
- The right-click context menu → Properties popover is displayed.
- Configure the required constraint options.
- Click OK to close the properties popover and apply the changes.
Changes are reflected immediately in the viewer.
Applying form field flags using the UI
Apply PDF form field flags programmatically
You can apply or modify form field flags in the following ways.
Apply flags When Creating Fields
Pass the flags properties in the settings object when creating form fields using addFormField().
pdfviewer.documentLoad = function () {
// Read-only Textbox that is printed but not required
pdfviewer.formDesignerModule.addFormField('Textbox', {
name: 'EmployeeId',
bounds: { X: 146, Y: 229, Width: 150, Height: 24 },
isReadOnly: true,
isRequired: false,
isPrint: true,
value: 'EMP-0001'
});
// Required Signature field that is not included in print
pdfviewer.formDesignerModule.addFormField('SignatureField', {
name: 'ApplicantSign',
bounds: { X: 57, Y: 923, Width: 200, Height: 43 },
isReadOnly: false,
isRequired: true,
isPrint: false,
tooltip: 'Sign to accept the terms'
});
};Update flags on Existing Fields programmatically
Use the updateFormField() method to modify constraint values on existing form fields.
pdfviewer.documentLoad = function () {
// Add a sample textbox
pdfviewer.formDesignerModule.addFormField('Textbox', {
name: 'Email',
bounds: { X: 146, Y: 260, Width: 220, Height: 24 }
});
// Retrieve it and update constraint flags
var field = pdfviewer.formFieldCollections.find(function (f) { return f && f.name === 'Email'; });
if (field) {
pdfviewer.formDesignerModule.updateFormField(field, {
isReadOnly: false,
isRequired: true,
isPrint: true,
tooltip: 'Enter a valid email'
});
}
};Set Default Flags for New PDF Form Fields
You can configure default flag values so that form fields added using the Form Designer toolbar automatically inherit them. This helps ensure consistent behavior for all newly created fields.
// Textbox fields will be editable, required, and included in print by default
pdfviewer.textFieldSettings = {
isReadOnly: false,
isRequired: true,
isPrint: true,
tooltip: 'Required field'
};
// Signature fields will be optional and hidden when printing
pdfviewer.signatureFieldSettings = {
isReadOnly: false,
isRequired: false,
isPrint: false,
tooltip: 'Sign if applicable'
};