Skip to content

Commit 1a252f7

Browse files
Merge pull request #2085 from syncfusion-content/1001842-FormsReview-TS
1001842: Forms Review and Corrections Ts.
2 parents 66b8bc8 + cf138bb commit 1a252f7

20 files changed

Lines changed: 369 additions & 134 deletions

Document-Processing-toc.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1502,7 +1502,7 @@
15021502
<ul>
15031503
<li><a href="/document-processing/pdf/pdf-viewer/javascript-es6/form-designer/overview">Overview</a></li>
15041504
<li><a href="/document-processing/pdf/pdf-viewer/javascript-es6/form-designer/form-filling">Fill form fields</a></li>
1505-
<li><a href="/document-processing/pdf/pdf-viewer/javascript-es6/toolbar-customization/form-designer-toolbar">Form Designer Toolbar</a></li>
1505+
<li><a href="/document-processing/pdf/pdf-viewer/javascript-es6/form-designer/form-designer">Form Designer and Toolbar</a></li>
15061506
<li>Create, Edit, Style and Remove Form Fields
15071507
<ul>
15081508
<li><a href="/document-processing/pdf/pdf-viewer/javascript-es6/form-designer/Create-edit-Style-del-formFields/create-formfields">Create form fields</a></li>

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

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ Resize the selected form field using the resize handles on the field boundary. S
4444

4545
### Add Textbox
4646

47-
1) Open the Form Designer toolbar.
48-
2) Select Textbox, then click/tap on the page to place it.
49-
3) Resize/move as needed and set properties in the property panel.
47+
- Open the Form Designer toolbar.
48+
- Select Textbox, then click/tap on the page to place it.
49+
- Resize/move as needed and set properties in the property panel.
5050

5151
![Textbox added from UI](../../images/ui-textbox.png)
5252

@@ -77,9 +77,9 @@ pdfviewer.documentLoad = () => {
7777

7878
### Add Password
7979

80-
1) Open the Form Designer toolbar.
81-
2) Select Password, then place it on the page.
82-
3) Configure tooltip, required, max length, etc.
80+
- Open the Form Designer toolbar.
81+
- Select Password, then place it on the page.
82+
- Configure tooltip, required, max length, etc.
8383

8484
![Password added from UI](../../images/ui-password.png)
8585

@@ -110,9 +110,9 @@ pdfviewer.documentLoad = () => {
110110

111111
### Add CheckBox
112112

113-
1) Choose CheckBox in the Form Designer toolbar.
114-
2) Click on the page to place, duplicate for multiple options if needed.
115-
3) Use property panel to set IsChecked, tooltip, and appearance.
113+
- Choose CheckBox in the Form Designer toolbar.
114+
- Click on the page to place, duplicate for multiple options if needed.
115+
- Use property panel to set IsChecked, tooltip, and appearance.
116116

117117
![CheckBox added from UI](../../images/ui-checkbox.png)
118118

@@ -144,9 +144,9 @@ pdfviewer.documentLoad = () => {
144144

145145
### Add RadioButton
146146

147-
1) Select RadioButton in the Form Designer toolbar.
148-
2) Place buttons sharing the same Name to create a group (e.g., Gender).
149-
3) Use property panel to set selection, colors, and tooltip.
147+
- Select RadioButton in the Form Designer toolbar.
148+
- Place buttons sharing the same Name to create a group (e.g., Gender).
149+
- Use property panel to set selection, colors, and tooltip.
150150

151151
![Radio buttons added from UI](../../images/ui-radiobutton.png)
152152

@@ -185,9 +185,9 @@ pdfviewer.documentLoad = () => {
185185

186186
### Add ListBox
187187

188-
1) Choose ListBox in the Form Designer toolbar.
189-
2) Place the field and add items in the property panel.
190-
3) Configure font, size, and selection behavior.
188+
- Choose ListBox in the Form Designer toolbar.
189+
- Place the field and add items in the property panel.
190+
- Configure font, size, and selection behavior.
191191

192192
![ListBox added from UI](../../images/ui-listbox.png)
193193

@@ -225,9 +225,9 @@ pdfviewer.documentLoad = () => {
225225

226226
### Add DropDown
227227

228-
1) Select DropDown in the Form Designer toolbar.
229-
2) Place the field, then add items via the property panel.
230-
3) Adjust appearance and default value.
228+
- Select DropDown in the Form Designer toolbar.
229+
- Place the field, then add items via the property panel.
230+
- Adjust appearance and default value.
231231

232232
![DropDown added from UI](../../images/ui-dropdown.png)
233233

@@ -265,9 +265,9 @@ pdfviewer.documentLoad = () => {
265265

266266
### Add Signature field
267267

268-
1) Select Signature field in the Form Designer toolbar.
269-
2) Place the field where the signer should sign.
270-
3) Configure indicator text, thickness, tooltip, and required state.
268+
- Select Signature field in the Form Designer toolbar.
269+
- Place the field where the signer should sign.
270+
- Configure indicator text, thickness, tooltip, and required state.
271271

272272
![Signature field added from UI](../../images/ui-signature.png)
273273

@@ -298,9 +298,9 @@ pdfviewer.documentLoad = () => {
298298

299299
### Add Initial field
300300

301-
1) Select Initial field in the Form Designer toolbar.
302-
2) Place the field where initials are required.
303-
3) Configure indicator text, tooltip, and required state.
301+
- Select Initial field in the Form Designer toolbar.
302+
- Place the field where initials are required.
303+
- Configure indicator text, tooltip, and required state.
304304

305305
![Initial field added from UI](../../images/ui-initial.png)
306306

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

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ The PDF Viewer supports editing these field types:
3535

3636
### Edit Textbox
3737

38-
1) Right-click the textbox → Properties.
39-
2) Change value, font, size, colors, border thickness, alignment, max length, multiline.
38+
- Right-click the textbox → Properties.
39+
- Change value, font, size, colors, border thickness, alignment, max length, multiline.
4040

4141
![Textbox edited from UI](../../images/ui-textbox-edit.png)
4242

@@ -85,8 +85,8 @@ pdfviewer.appendTo('#PdfViewer');
8585

8686
### Edit Password
8787

88-
1) Right-click the password field → Properties.
89-
2) Change tooltip, required, max length, font, and appearance.
88+
- Right-click the password field → Properties.
89+
- Change tooltip, required, max length, font, and appearance.
9090

9191
![Password edited from UI](../../images/ui-password-edit.png)
9292

@@ -136,8 +136,8 @@ pdfviewer.appendTo('#PdfViewer');
136136

137137
### Edit CheckBox
138138

139-
1) Right-click the checkbox → Properties.
140-
2) Toggle checked state, change border/background colors and thickness.
139+
- Right-click the checkbox → Properties.
140+
- Enable checked state.
141141

142142
![CheckBox edited from UI](../../images/ui-checkbox-edit.png)
143143

@@ -180,8 +180,8 @@ pdfviewer.appendTo('#PdfViewer');
180180

181181
### Edit RadioButton
182182

183-
1) Right-click a radio button → Properties.
184-
2) Set selected state, colors, and thickness. Buttons with the same Name form a group; only one can be selected.
183+
- Right-click a radio button → Properties.
184+
- Set selected state. Buttons with the same Name form a group; only one can be selected.
185185

186186
![RadioButton edited from UI](../../images/ui-radiobutton-edit.png)
187187

@@ -219,8 +219,8 @@ pdfviewer.appendTo('#PdfViewer');
219219

220220
### Edit ListBox
221221

222-
1) Right-click the list box → Properties.
223-
2) Add/remove items, set selection, and adjust fonts and colors.
222+
- Right-click the list box → Properties.
223+
- Add/remove items, set selection, and adjust fonts and colors.
224224

225225
![ListBox edited from UI](../../images/ui-listbox-edit.png)
226226

@@ -269,8 +269,8 @@ pdfviewer.appendTo('#PdfViewer');
269269

270270
### Edit DropDown
271271

272-
1) Right-click the dropdown → Properties.
273-
2) Add/remove items, set default value, and adjust appearance.
272+
- Right-click the dropdown → Properties.
273+
- Add/remove items, set default value, and adjust appearance.
274274

275275
![DropDown edited from UI](../../images/ui-dropdown-edit.png)
276276

@@ -319,8 +319,8 @@ pdfviewer.appendTo('#PdfViewer');
319319

320320
### Edit Signature field
321321

322-
1) Right-click the signature field → Properties.
323-
2) Change tooltip, thickness, indicator text, required/visibility states.
322+
- Right-click the signature field → Properties.
323+
- Change tooltip, thickness, indicator text, required/visibility states.
324324

325325
![Signature field edited from UI](../../images/ui-signature-edit.png)
326326

@@ -364,8 +364,8 @@ pdfviewer.appendTo('#PdfViewer');
364364

365365
### Edit Initial field
366366

367-
1) Right-click the initial field → Properties.
368-
2) Change tooltip, indicator text, thickness, and required/visibility states.
367+
- Right-click the initial field → Properties.
368+
- Change tooltip, indicator text, thickness, and required/visibility states.
369369

370370
![Initial field edited from UI](../../images/ui-initial-edit.png)
371371

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ You can remove designed form fields directly from the Form Designer toolbar.
1717

1818
Steps:
1919

20-
1) Select the target form field on the page.
21-
2) Click the Delete Form Field icon on the Form Designer toolbar.
22-
3) Alternatively, press the `Delete key` after selecting one or more fields.
20+
- Select the target form field on the page.
21+
- Click the Delete Form Field icon on the Form Designer toolbar.
22+
- Alternatively, press the `Delete key` after selecting one or more fields.
2323

2424
![Form Designer toolbar with Delete icon](../../images/ui-del-formfields.png)
2525

0 commit comments

Comments
 (0)