Skip to content

Commit 4cae187

Browse files
1001841: Updated Proper API Links and resolved CI failures
1 parent 5ddc6f6 commit 4cae187

10 files changed

Lines changed: 24 additions & 25 deletions

File tree

Document-Processing/PDF/PDF-Viewer/react/forms/custom-data.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -78,14 +78,14 @@ root.render(<App />);
7878

7979
When users add form fields using the [Form Designer toolbar](../toolbar-customization/form-designer-toolbar), you can define default customData so that newly created fields automatically inherit it. Default custom data can be configured using per-field settings objects such as:
8080

81-
- [textFieldSettings](https://ej2.syncfusion.com/documentation/react/api/pdfviewer/index-default#textfieldsettings)
82-
- [passwordFieldSettings](https://ej2.syncfusion.com/documentation/api/pdfviewer/index-default#passwordfieldsettings)
83-
- [checkBoxFieldSettings](https://ej2.syncfusion.com/documentation/api/pdfviewer/index-default#checkboxfieldsettings)
84-
- [radioButtonFieldSettings](https://ej2.syncfusion.com/documentation/api/pdfviewer/index-default#radiobuttonfieldsettings)
85-
- [listBoxFieldSettings](https://ej2.syncfusion.com/documentation/api/pdfviewer/index-default#listboxfieldsettings)
86-
- [dropDownFieldSettings](https://ej2.syncfusion.com/documentation/api/pdfviewer/index-default#dropdownfieldsettings)
87-
- [signatureFieldSettings](https://ej2.syncfusion.com/documentation/api/pdfviewer/index-default#signaturefieldsettings)
88-
- [initialFieldSettings](https://ej2.syncfusion.com/documentation/api/pdfviewer/index-default#initialfieldsettings)
81+
- [textFieldSettings](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/index-default#textfieldsettings)
82+
- [passwordFieldSettings](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/index-default#passwordfieldsettings)
83+
- [checkBoxFieldSettings](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/index-default#checkboxfieldsettings)
84+
- [radioButtonFieldSettings](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/index-default#radiobuttonfieldsettings)
85+
- [listBoxFieldSettings](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/index-default#listboxfieldsettings)
86+
- [dropDownFieldSettings](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/index-default#dropdownfieldsettings)
87+
- [signatureFieldSettings](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/index-default#signaturefieldsettings)
88+
- [initialFieldSettings](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/index-default#initialfieldsettings)
8989

9090
{% tabs %}
9191
{% highlight js tabtitle="index.js" %}

Document-Processing/PDF/PDF-Viewer/react/forms/form-constrain.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ control: PDF Viewer
77
documentation: ug
88
---
99

10-
# PDF form field flags in TypeScript PDF Viewer
10+
# PDF form field flags in React PDF Viewer
1111

12-
The Syncfusion **TypeScript 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.
12+
The **Syncfusion React 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.
1313

1414
This topic explains:
1515
- [Supported form field flags](#supported-pdf-form-field-flags)

Document-Processing/PDF/PDF-Viewer/react/forms/form-designer.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ domainurl: ##DomainURL##
1010

1111
# Form Designer in React PDF Viewer
1212

13-
When **Form Designer mode** is enabled in the Syncfusion [React PDF Viewer](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/react/overview), a default [Form Designer user interface (UI)](
14-
https://document.syncfusion.com/demos/pdf-viewer/react/#/tailwind3/pdfviewer/form-designer) is displayed. This UI includes a built in toolbar for adding form fields such as text boxes, password fields, check boxes, radio buttons, drop down lists, list boxes, and signature and initial fields.
13+
When **Form Designer mode** is enabled in the Syncfusion [React PDF Viewer](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/react/overview), a default [Form Designer user interface (UI)](https://document.syncfusion.com/demos/pdf-viewer/react/#/tailwind3/pdfviewer/form-designer) is displayed. This UI includes a built in toolbar for adding form fields such as text boxes, password fields, check boxes, radio buttons, drop down lists, list boxes, and signature and initial fields.
1514

1615
Using the Form Designer UI, users can place form fields on the PDF, move and resize them, configure field and widget properties, preview the designed form, and remove fields when required. The Form Designer toolbar can also be shown or hidden and customized to control the available tools based on application requirements, enabling flexible and interactive form design directly within the viewer.
1716

@@ -220,7 +219,7 @@ root.render(<App />);
220219

221220
## Customize the Built-in Form Designer Toolbar
222221

223-
You can customize the Form Designer toolbar by specifying the tools to display and arranging them in the required order using the [FormDesignerToolbarItems](https://ej2.syncfusion.com/documentation/api/pdfviewer/formdesignertoolbaritem) property.
222+
You can customize the Form Designer toolbar by specifying the tools to display and arranging them in the required order using the [FormDesignerToolbarItems](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/formdesignertoolbaritem) property.
224223

225224
This customization helps you limit the available tools and simplify the user interface.
226225

Document-Processing/PDF/PDF-Viewer/react/forms/form-validation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ Form field validation follows this flow:
1818
- Enable validation using the [enableFormFieldsValidation](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/index-default#enableformfieldsvalidation) property.
1919
- Handle the [validateFormFields](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/index-default#validateformfields) event to determine which required fields are not filled.
2020
- When validation is enabled and a user attempts to print, download, or submit the document:
21-
- The [validateFormFields](https://ej2.syncfusion.com/documentation/api/pdfviewer/index-default#validateformfields) event is triggered.
21+
- The [validateFormFields](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/index-default#validateformfields) event is triggered.
2222
- Unfilled required fields are listed in args.nonFillableFields.
2323
- You can cancel the action, show an error message, or move focus to an invalid field.
2424

2525
## Enable PDF Form Field Validation
2626

27-
To enable validation, set the [enableFormFieldsValidation](https://ej2.syncfusion.com/documentation/api/pdfviewer/index-default#validateformfields) property to true and wire the validateFormFields event.
27+
To enable validation, set the [enableFormFieldsValidation](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/index-default#validateformfields) property to true and wire the validateFormFields event.
2828

2929
{% tabs %}
3030
{% highlight js tabtitle="index.js" %}

Document-Processing/PDF/PDF-Viewer/react/forms/group-form-fields.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ N>Form field grouping is controlled by the **Name** property. The position of ea
4141
4. Assign the same **Name** to all PDF Form Field that belong to the group.
4242
5. Apply the changes and verify that updates in one widget reflect in the others.
4343

44-
![Grouping textboxes with the same name](../images/groupTextFileds.png)
44+
![Grouping textboxes with the same name](../../javascript-es6/images/groupTextFileds.png)
4545

46-
![Grouping radio buttons with the same name](../images/groupRadiobutton.png)
46+
![Grouping radio buttons with the same name](../../javascript-es6/images/groupRadiobutton.png)
4747

4848
## Group PDF Form Fields Programmatically
4949

Document-Processing/PDF/PDF-Viewer/react/forms/import-export-form-fields/export-form-fields.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ root.render(<App />);
194194
- Export as JSON for REST API integration.
195195
- Export as FDF/XFDF for compatibility with other PDF tools.
196196
- Export as Object to merge with app state or store securely.
197-
- Automate exports after [validation](../form-validation) using [validateFormFields()](https://ej2.syncfusion.com/documentation/api/pdfviewer/index-default#validateformfields)
197+
- Automate exports after [validation](../form-validation) using [validateFormFields()](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/index-default#validateformfields)
198198

199199
[View Sample on GitHub](https://github.com/SyncfusionExamples/react-pdf-viewer-examples)
200200

Document-Processing/PDF/PDF-Viewer/react/forms/import-export-form-fields/import-export-events.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ control: PDF Viewer
77
documentation: ug
88
---
99

10-
# PDF Form Import and Export Events in TypeScript
10+
# PDF Form Import and Export Events in React
1111

1212
Import/Export events let you **track and customize the entire life cycle** of form data being imported into or exported from the PDF Viewer.
1313
Use these events to:
@@ -42,9 +42,9 @@ viewer.importFailed = (args) => {
4242
```
4343

4444
## Export Events
45-
- [exportStart](https://ej2.syncfusion.com/documentation/api/pdfviewer/index-default#exportstart) — Fires when an export begins.
46-
- [exportSuccess](https://ej2.syncfusion.com/documentation/api/pdfviewer/index-default#exportsuccess) — Fires when form fields are successfully exported.
47-
- [exportFailed](https://ej2.syncfusion.com/documentation/api/pdfviewer/index-default#exportfailed) — Fires if the export fails.
45+
- [exportStart](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/index-default#exportstart) — Fires when an export begins.
46+
- [exportSuccess](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/index-default#exportsuccess) — Fires when form fields are successfully exported.
47+
- [exportFailed](https://ej2.syncfusion.com/react/documentation/api/pdfviewer/index-default#exportfailed) — Fires if the export fails.
4848

4949
**Example: Handle Export Events**
5050

Document-Processing/PDF/PDF-Viewer/react/forms/manage-form-fields/create-form-fields.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ documentation: ug
99

1010
# Create PDF Form Fields in React
1111

12-
You can create or add new form fields either visually using the [Form Designer UI](https://document.syncfusion.com/demos/pdf-viewer/javascript/#/tailwind3/pdfviewer/formdesigner.html) or dynamically using APIs.
12+
You can create or add new form fields either visually using the [Form Designer UI](https://document.syncfusion.com/demos/pdf-viewer/react/#/tailwind3/pdfviewer/form-designer) or dynamically using APIs.
1313

1414
## Create Form Fields Using the Form Designer UI
1515
Use this approach when you want to design forms manually without writing code.

Document-Processing/PDF/PDF-Viewer/react/forms/manage-form-fields/modify-form-fields.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,7 @@ root.render(<App />);
506506
{% endhighlight %}
507507
{% endtabs %}
508508

509-
[View Sample on GitHub](https://github.com/SyncfusionExamples/typescript-pdf-viewer-examples)
509+
[View Sample on GitHub](https://github.com/SyncfusionExamples/react-pdf-viewer-examples)
510510

511511
## See also
512512

Document-Processing/PDF/PDF-Viewer/react/forms/manage-form-fields/move-resize-form-fields.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ control: PDF Viewer
77
documentation: ug
88
---
99

10-
# Move and Resize PDF Form Fields
10+
# Move and Resize PDF Form Fields in React
1111
- **Move**: Drag the form field to reposition it.
1212
- **Resize**: Use the resize handles to change width and height.
1313

0 commit comments

Comments
 (0)