Skip to content

Commit c7e9a84

Browse files
994681: Updated See Also Section Form Designer Section
1 parent 31381e3 commit c7e9a84

File tree

15 files changed

+181
-7
lines changed

15 files changed

+181
-7
lines changed

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

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,4 +350,17 @@ document.getElementById('addPasswordField').addEventListener('click', function (
350350
pdfviewer.formDesignerModule.setFormFieldMode("Password");
351351
//In setFormFieldModule-You can pass the required field to be added like Textbox, Checkbox etc.,
352352
});
353-
```
353+
```
354+
355+
[View Sample on GitHub](https://github.com/SyncfusionExamples/typescript-pdf-viewer-examples)
356+
357+
## See Also
358+
359+
- [Form Designer overview](../overview)
360+
- [Form Designer Toolbar](../../toolbar-customization/form-designer-toolbar)
361+
- [Edit form fields](./edit-formfields)
362+
- [Style form fields](./style-formfields)
363+
- [Remove form fields](./remove-formfields)
364+
- [Group form fields](../group-formfields)
365+
- [Form validation](../form-validation)
366+
- [Form Fields API](../formfields-api)

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

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -404,3 +404,16 @@ pdfviewer.appendTo('#PdfViewer');
404404
}
405405
});
406406
```
407+
408+
[View Sample on GitHub](https://github.com/SyncfusionExamples/typescript-pdf-viewer-examples)
409+
410+
## See also
411+
412+
- [Form Designer overview](../overview)
413+
- [Form Designer Toolbar](../../toolbar-customization/form-designer-toolbar)
414+
- [Create form fields](./create-formfields)
415+
- [Remove form Fields](./remove-formfields)
416+
- [Style form fields](./style-formfields)
417+
- [Group form fields](../group-formfields)
418+
- [Form validation](../form-validation)
419+
- [Form fields API](../formfields-api)

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

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,4 +87,18 @@ pdfviewer.documentLoad = () => {
8787
```
8888

8989
N> To configure the server-backed PDF Viewer, add the following `serviceUrl` in the `index.ts` file:
90-
`pdfviewer.serviceUrl = 'https://document.syncfusion.com/web-services/pdf-viewer/api/pdfviewer/';`
90+
`pdfviewer.serviceUrl = 'https://document.syncfusion.com/web-services/pdf-viewer/api/pdfviewer/';`
91+
92+
[View Sample on GitHub](https://github.com/SyncfusionExamples/typescript-pdf-viewer-examples)
93+
94+
## See also
95+
96+
- [Form Designer overview](../overview)
97+
- [Form Designer Toolbar](../../toolbar-customization/form-designer-toolbar)
98+
- [Create form fields](./create-formfields)
99+
- [Edit form fields](./edit-formfields)
100+
- [Style form fields](./style-formfields)
101+
- [Group form fields](../group-formfields)
102+
- [Form validation](../form-validation)
103+
- [Add custom data to form fields](../custom-data)
104+
- [Form fields API](../formfields-api)

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

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -532,3 +532,17 @@ pdfviewer.initialFieldSettings = {
532532
}
533533
};
534534
```
535+
536+
[View Sample on GitHub](https://github.com/SyncfusionExamples/typescript-pdf-viewer-examples)
537+
538+
## See also
539+
540+
- [Form Designer overview](../overview)
541+
- [Form Designer Toolbar](../../toolbar-customization/form-designer-toolbar)
542+
- [Create form fields](./create-formfields)
543+
- [Edit form fields](./edit-formfields)
544+
- [Remove form fields](./remove-formfields)
545+
- [Group form fields](../group-formfields)
546+
- [Form validation](../form-validation)
547+
- [Add custom data to form fields](../custom-data)
548+
- [Form fields API](../formfields-api)

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

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,4 +92,15 @@ viewer.documentLoad = () => {
9292
- Treat customData as application metadata. Use it to drive business rules, validation, or routing in your app.
9393
- When cloning or copying fields in your UI, also copy or adjust customData as needed.
9494

95-
[View Sample on GitHub](https://github.com/SyncfusionExamples/typescript-pdf-viewer-examples)
95+
[View Sample on GitHub](https://github.com/SyncfusionExamples/typescript-pdf-viewer-examples)
96+
97+
## See also
98+
99+
- [Form Designer overview](./overview)
100+
- [Form Designer Toolbar](../toolbar-customization/form-designer-toolbar)
101+
- [Create form fields](./Create-edit-Style-del-formFields/create-formfields)
102+
- [Edit form fields](./Create-edit-Style-del-formFields/edit-formfields)
103+
- [Group form fields](./group-formfields)
104+
- [Form constrain](./form-constrain)
105+
- [Form validation](./form-validation)
106+
- [Form fields API](./formfields-api)

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

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,3 +221,13 @@ pdfviewer.signatureFieldSettings = {
221221

222222
[View Sample on GitHub](https://github.com/SyncfusionExamples/typescript-pdf-viewer-examples)
223223

224+
## See also
225+
226+
- [Form Designer overview](./overview)
227+
- [Form Designer Toolbar](../toolbar-customization/form-designer-toolbar)
228+
- [Create form fields](./Create-edit-Style-del-formFields/create-formfields)
229+
- [Edit form fields](./Create-edit-Style-del-formFields/edit-formfields)
230+
- [Group form fields](./group-formfields)
231+
- [Add custom data to form fields](./custom-data)
232+
- [Form validation](./form-validation)
233+
- [Form fields API](./formfields-api)

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

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,4 +195,16 @@ The [validateFormFields](https://ej2.syncfusion.com/javascript/documentation/api
195195
{% highlight html tabtitle="index.html" %}
196196
{% include code-snippet/pdfviewer/javascript-es6/formfieldvalidationevent-cs2/index.html %}
197197
{% endhighlight %}
198-
{% endtabs %}
198+
{% endtabs %}
199+
200+
## See also
201+
202+
- [Form Designer overview](./overview)
203+
- [Form Designer Toolbar](../toolbar-customization/form-designer-toolbar)
204+
- [Create form fields](./Create-edit-Style-del-formFields/create-formfields)
205+
- [Edit form fields](./Create-edit-Style-del-formFields/edit-formfields)
206+
- [Group form fields](./group-formfields)
207+
- [Add custom data to form fields](./custom-data)
208+
- [Form Constrain](./form-constrain)
209+
- [Form validation](./form-validation)
210+
- [Form fields API](./formfields-api)

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

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,5 +103,12 @@ For more information, see the [Form fields documentation](https://help.syncfusio
103103

104104
## See also
105105

106-
* [Handwritten signature in TypeScript PDF Viewer](../annotations/signature-annotation)
107-
* [Form Designer events](../form-designer/form-field-events)
106+
- [Form Designer overview](./overview)
107+
- [Form Designer Toolbar](../toolbar-customization/form-designer-toolbar)
108+
- [Create form fields](./Create-edit-Style-del-formFields/create-formfields)
109+
- [Edit form fields](./Create-edit-Style-del-formFields/edit-formfields)
110+
- [Group form fields](./group-formfields)
111+
- [Add custom data to form fields](./custom-data)
112+
- [Form Constrain](./form-constrain)
113+
- [Form validation](./form-validation)
114+
- [Form fields API](./formfields-api)

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

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,3 +78,15 @@ pdfviewer.validateFormFields = (args: any) => {
7878
- The event only fires when a print or download action is invoked.
7979
- To perform custom checks (e.g., regex for email), iterate over pdfviewer.retrieveFormFields() and apply your own logic before triggering print or download.
8080

81+
[View Sample on GitHub](https://github.com/SyncfusionExamples/typescript-pdf-viewer-examples)
82+
83+
## See also
84+
85+
- [Form Designer overview](./overview)
86+
- [Form Designer Toolbar](../toolbar-customization/form-designer-toolbar)
87+
- [Create form fields](./Create-edit-Style-del-formFields/create-formfields)
88+
- [Edit form fields](./Create-edit-Style-del-formFields/edit-formfields)
89+
- [Group form fields](./group-formfields)
90+
- [Add custom data to form fields](./custom-data)
91+
- [Form Constrain](./form-constrain)
92+
- [Form fields API](./formfields-api)

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

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -409,3 +409,13 @@ pdfviewer.enableFormDesignerToolbar(true); // show
409409
{% endhighlight %}
410410
{% endtabs %}
411411

412+
## See also
413+
414+
- [Form Designer overview](./overview)
415+
- [Form Designer Toolbar](../toolbar-customization/form-designer-toolbar)
416+
- [Create form fields](./Create-edit-Style-del-formFields/create-formfields)
417+
- [Edit form fields](./Create-edit-Style-del-formFields/edit-formfields)
418+
- [Group form fields](./group-formfields)
419+
- [Add custom data to form fields](./custom-data)
420+
- [Form Constrain](./form-constrain)
421+
- [Form fields Validation](./form-validation)

0 commit comments

Comments
 (0)