Skip to content

Commit 67fd2e4

Browse files
1001842: Updated Forms Navigation Update.
1 parent 9e30ebf commit 67fd2e4

9 files changed

Lines changed: 60 additions & 60 deletions

File tree

Document-Processing/PDF/PDF-Viewer/javascript-es6/form-designer/Create-edit-Style-del-formFields/create-formfields.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ The PDF Viewer component supports interactive form field design, including drawi
1313

1414
The PDF Viewer supports the following form field types:
1515

16-
- Textbox
17-
- Password
18-
- CheckBox
19-
- RadioButton
20-
- ListBox
21-
- DropDown
22-
- Signature field
23-
- Initial field
16+
- [Textbox](#add-textbox)
17+
- [Password](#add-password)
18+
- [CheckBox](#add-checkbox)
19+
- [RadioButton](#add-radiobutton)
20+
- [ListBox](#add-listbox)
21+
- [DropDown](#add-dropdown)
22+
- [Signature field](#signature-field)
23+
- [Initial field](#add-initial-field)
2424

2525
## Add the form field dynamically
2626

Document-Processing/PDF/PDF-Viewer/javascript-es6/form-designer/Create-edit-Style-del-formFields/edit-formfields.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ The PDF Viewer component allows user to edit PDF form fields using the Form Desi
1313

1414
The PDF Viewer supports editing these field types:
1515

16-
- Textbox
17-
- Password
18-
- CheckBox
19-
- RadioButton
20-
- ListBox
21-
- DropDown
22-
- Signature field
23-
- Initial field
16+
- [Textbox](#textbox)
17+
- [Password](#password)
18+
- [CheckBox](#checkbox)
19+
- [RadioButton](#radiobutton)
20+
- [ListBox](#listbox)
21+
- [DropDown](#dropdown)
22+
- [Signature field](#signature-field)
23+
- [Initial field](#initial-field)
2424

2525
## Edit with the UI
2626

Document-Processing/PDF/PDF-Viewer/javascript-es6/form-designer/Create-edit-Style-del-formFields/style-formfields.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ The PDF Viewer component allows users to style and customize the appearance of P
1313

1414
Supported field types:
1515

16-
- Textbox
17-
- Password
18-
- CheckBox
19-
- RadioButton
20-
- ListBox
21-
- DropDown
22-
- Signature field
23-
- Initial field
16+
- [Textbox](#textbox)
17+
- [Password](#password)
18+
- [CheckBox](#checkbox)
19+
- [RadioButton](#radiobutton)
20+
- [ListBox](#listbox)
21+
- [DropDown](#dropdown)
22+
- [Signature field](#signature-field)
23+
- [Initial field](#initial-field)
2424

2525
## Textbox
2626

Document-Processing/PDF/PDF-Viewer/javascript-es6/form-designer/form-constrain.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ documentation: ug
1111

1212
The PDF Viewer components provides support to control user interaction and output behavior of form fields using the following constraints:
1313

14-
- isReadOnly: Prevents users from editing a field.
15-
- isRequired: Marks a field as mandatory and participates in validation.
16-
- isPrint: Includes the field appearance when printing or exporting with print.
14+
- [isReadOnly](#make-form-fields-readonly): Prevents users from editing a field.
15+
- [isRequired](#mark-fields-as-required): Marks a field as mandatory and participates in validation.
16+
- [isPrint](#control-field-print-behavior): Includes the field appearance when printing or exporting with print.
1717

1818
You can set these properties when you create fields, update them later programmatically, or configure default settings so fields created from the Form Designer toolbar inherit the values.
1919

Document-Processing/PDF/PDF-Viewer/javascript-es6/form-designer/form-filling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ pdfviewer.appendTo('#PdfViewer');
3535

3636
The PDF Viewer supports the following form field types:
3737

38-
* Text box
38+
* [Text box](../form-designer/Create-edit-Style-del-formFields/create-formfields/#add-listbox)
3939
* Password
4040
* Check box
4141
* Radio button

Document-Processing/PDF/PDF-Viewer/javascript-es6/form-designer/group-formfields.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ In PDF forms, multiple widgets can represent the same logical form field. The Sy
1313

1414
Key behavior when fields share the same Name:
1515

16-
- Textbox and Password: Text entered in one widget appears in all widgets with the same name.
17-
- CheckBox: Checking one widget checks all widgets with the same name (mirrored state).
18-
- RadioButton: Widgets with the same name are grouped; only one radio button in the group can be selected at a time.
19-
- ListBox and DropDown: The selected item is shared across widgets with the same name.
20-
- Signature field and Initial field: The applied signature/initial is mirrored across widgets with the same name.
16+
- **Textbox and Password**: Text entered in one widget appears in all widgets with the same name.
17+
- **CheckBox**: Checking one widget checks all widgets with the same name (mirrored state).
18+
- **RadioButton**: Widgets with the same name are grouped; only one radio button in the group can be selected at a time.
19+
- **ListBox and DropDown**: The selected item is shared across widgets with the same name.
20+
- **Signature field and Initial field**: The applied signature/initial is mirrored across widgets with the same name.
2121

2222
N> Grouping is driven solely by the Name property. Bounds determine placement; name determines grouping.
2323

Document-Processing/PDF/PDF-Viewer/javascript-es6/form-designer/import-export-formfields/export-formfields.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ documentation: ug
1111

1212
The PDF Viewer component supports exporting and importing form field data using the importFormFields, exportFormFields, and exportFormFieldsAsObject methods in the following formats:
1313

14-
- FDF
15-
- XFDF
16-
- JSON
14+
- [FDF](#export-as-fdf)
15+
- [XFDF](#export-as-xfdf)
16+
- [JSON](#export-as-json)
1717

1818
## Export as FDF
1919

Document-Processing/PDF/PDF-Viewer/javascript-es6/form-designer/import-export-formfields/import-formfields.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ documentation: ug
1111

1212
The PDF Viewer provides APIs to import interactive form field values into the currently loaded PDF. You can import from the following formats:
1313

14-
- FDF
15-
- XFDF
16-
- JSON
14+
- [FDF](#import-as-fdf)
15+
- [XFDF](#import-as-xfdf)
16+
- [JSON](#import-as-json)
1717

1818
Supported API:
1919
- importFormFields(sourceOrObject, format)

Document-Processing/PDF/PDF-Viewer/javascript-es6/form-designer/overview.md

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ The viewer supports both runtime form filling and an interactive Form Designer t
1717

1818
Work with the runtime form fields present in a PDF Form.
1919
- Render existing fields
20-
- Fill fields.
21-
- Import/Export form data as JSON, XFDF, FDF, or as a plain object
22-
- Inject FormFields to enable form-filling features.
20+
- [Fill fields](./form-filling).
21+
- [Import/Export](./import-export-formfields/export-formfields) form data as JSON, XFDF, FDF, or as a plain object
22+
- Inject [FormFields](./form-designer) to enable form-filling features.
2323

2424
Use the following code-snippet to enable form-filling by injecting `FormFields` Module.
2525

@@ -37,13 +37,13 @@ pdfviewer.appendTo('#PdfViewer');
3737
## Form Designer
3838

3939
Create and customize interactive fields directly on the PDF page.
40-
- Add fields: textbox, checkbox, radio button, dropdown, list box, signature, and initials
41-
- Edit quickly: move, resize, align, distribute, copy/paste, undo/redo
42-
- Configure properties: name, value, font, color, border, alignment, required/read-only/visibility, tab order
43-
- Control interaction: toggle read-only, show/hide, and manage printing behavior
44-
- Manage fields: select, group/ungroup, reorder, or delete
45-
- Save and print: persist designed fields in the PDF and print with appearances
46-
- Tailor the UI: show/hide or customize the Form Designer toolbar; handle events for add/edit/select/move/resize
40+
- [Add fields](../form-designer/Create-edit-Style-del-formFields/create-formfields): textbox, checkbox, radio button, dropdown, list box, signature, and initials
41+
- [Edit quickly](../form-designer/Create-edit-Style-del-formFields/edit-formfields): move, resize, align, distribute, copy/paste, undo/redo
42+
- [Configure properties](../form-designer/Create-edit-Style-del-formFields/style-formfields): name, value, font, color, border, alignment, required/read-only/visibility, tab order
43+
- [Control interaction](../form-designer/form-constrain): toggle read-only, show/hide, and manage printing behavior
44+
- [Manage fields](../form-designer/group-formfields): select, group/ungroup, reorder, or delete
45+
- [Save and print](../download): persist designed fields in the PDF and print with appearances
46+
- [Tailor the UI](./form-designer/#how-to-customize-the-form-designer-toolbar): show/hide or customize the Form Designer toolbar; handle events for add/edit/select/move/resize
4747

4848
Use the following Code-snippet to enable Form Designer by injecting `FormDesigner` Module.
4949

@@ -60,20 +60,20 @@ pdfviewer.appendTo('#PdfViewer');
6060

6161
## Supported form field types
6262

63-
- Textbox
64-
- Password
65-
- CheckBox
66-
- RadioButton
67-
- ListBox
68-
- DropDown
69-
- Signature field
70-
- Initial field
63+
- [Textbox](../form-designer/Create-edit-Style-del-formFields/create-formfields/#add-textbox)
64+
- [Password](../form-designer/Create-edit-Style-del-formFields/create-formfields/#add-password)
65+
- [CheckBox](../form-designer/Create-edit-Style-del-formFields/create-formfields/#add-checkbox)
66+
- [RadioButton](../form-designer/Create-edit-Style-del-formFields/create-formfields/#add-radiobutton)
67+
- [ListBox](../form-designer/Create-edit-Style-del-formFields/create-formfields/#add-listbox)
68+
- [DropDown](../form-designer/Create-edit-Style-del-formFields/create-formfields/#add-dropdown)
69+
- [Signature field](../form-designer/Create-edit-Style-del-formFields/create-formfields/#add-signature-field)
70+
- [Initial field](../form-designer/Create-edit-Style-del-formFields/create-formfields/#add-initial-field)
7171

7272
## Typical workflows
7373

74-
- Design → Save → Fill: create or modify fields, save them into the PDF, then fill and validate
75-
- Fill → Export/Import: complete forms and export data to JSON/XFDF/FDF, or import data to fill
76-
- Customize → Integrate: wire up events and business rules; tailor the designer toolbar for your app
74+
- **Design** → Save → Fill: [create or modify fields](./Create-edit-Style-del-formFields/create-formfields), save them into the PDF, then fill and validate
75+
- **Fill**[Export/Import](./import-export-formfields/export-formfields): complete forms and export data to JSON/XFDF/FDF, or import data to fill
76+
- **Customize** → Integrate: wire up events and business rules; tailor the designer [toolbar](./form-designer/#how-to-customize-the-form-designer-toolbar) for your app
7777

7878
## See also
7979

0 commit comments

Comments
 (0)