Skip to content

Commit 0de3b98

Browse files
author
SaravanaPriya
authored
Merge branch 'hotfix/hotfix-v25.1.35' into 878526-linux
2 parents dba0c63 + 48af503 commit 0de3b98

File tree

7 files changed

+72
-55
lines changed

7 files changed

+72
-55
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
title: Essential Studio for ##Platform_Name## 2023 Weekly Nuget Release Release Notes
3+
description: Essential Studio for ##Platform_Name## 2023 Weekly Nuget Release Release Notes
4+
platform: ej2-asp-core-mvc
5+
publishingplatform: ##Platform_Name##
6+
documentation: ug
7+
---
8+
9+
# Essential Studio for ##Platform_Name## Release Notes
10+
11+
{% include release-info.html date="April 09, 2024" version="v25.1.39" %}
12+
13+
{% directory path: _includes/release-notes/v25.1.39 %}
14+
15+
{% include {{file.url}} %}
16+
17+
{% enddirectory %}
Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Create Programmatically in EJ2 ASP.NET MVC PDF Viewer | Syncfusion
44
description: Learn here all about Create Programmatically in ASP.NET MVC PDF Viewer component of Syncfusion Essential JS 2 and more.
55
platform: ej2-asp-core-mvc
66
control: Create Programmatically
7-
publishingplatform: ej2-asp-core-mvc
7+
publishingplatform: ##Platform_Name##
88
documentation: ug
99
---
1010

@@ -69,7 +69,7 @@ Using updateFormField method, Form Field can be updated programmatically. We sho
6969
function documentLoad() {
7070
var viewer = document.getElementById('pdfviewer').ej2_instances[0];
7171
viewer.formDesignerModule.addFormField("Textbox", { name: "Textbox", bounds: { X: 146, Y: 229, Width: 150, Height: 24 } });
72-
viewer.formDesignerModule.addFormField("Textbox", { name: "Textfield", bounds: { X: 300, Y: 229, Width: 150, Height: 24 } });
72+
viewer.formDesignerModule.addFormField("Textbox", { name: "Textbox", bounds: { X: 300, Y: 229, Width: 150, Height: 24 } });
7373
viewer.formDesignerModule.updateFormField(pdfviewer.formFieldCollections[0], { backgroundColor: 'red' });
7474
}
7575
</script>
@@ -85,7 +85,7 @@ Using updateFormField method, Form Field can be updated programmatically. We sho
8585
function documentLoad() {
8686
var viewer = document.getElementById('pdfviewer').ej2_instances[0];
8787
viewer.formDesignerModule.addFormField("Textbox", { name: "Textbox", bounds: { X: 146, Y: 229, Width: 150, Height: 24 } });
88-
viewer.formDesignerModule.addFormField("Textbox", { name: "Textfield", bounds: { X: 300, Y: 229, Width: 150, Height: 24 } });
88+
viewer.formDesignerModule.addFormField("Textbox", { name: "Textbox", bounds: { X: 300, Y: 229, Width: 150, Height: 24 } });
8989
viewer.formDesignerModule.updateFormField(pdfviewer.formFieldCollections[0], { backgroundColor: 'red' });
9090
}
9191
</script>
@@ -107,7 +107,7 @@ Using deleteFormField method, the form field can be deleted programmatically. We
107107
function documentLoad() {
108108
var viewer = document.getElementById('pdfviewer').ej2_instances[0];
109109
viewer.formDesignerModule.addFormField("Textbox", { name: "Textbox", bounds: { X: 146, Y: 229, Width: 150, Height: 24 } });
110-
viewer.formDesignerModule.addFormField("Textbox", { name: "Textfield", bounds: { X: 300, Y: 229, Width: 150,Height: 24 } });
110+
viewer.formDesignerModule.addFormField("Textbox", { name: "Textbox", bounds: { X: 300, Y: 229, Width: 150,Height: 24 } });
111111
viewer.formDesignerModule.deleteFormField(pdfviewer.formFieldCollections[0]);
112112
}
113113
</script>
@@ -123,7 +123,7 @@ Using deleteFormField method, the form field can be deleted programmatically. We
123123
function documentLoad() {
124124
var viewer = document.getElementById('pdfviewer').ej2_instances[0];
125125
viewer.formDesignerModule.addFormField("Textbox", { name: "Textbox", bounds: { X: 146, Y: 229, Width: 150, Height: 24 } });
126-
viewer.formDesignerModule.addFormField("Textbox", { name: "Textfield", bounds: { X: 300, Y: 229, Width: 150,Height: 24 } });
126+
viewer.formDesignerModule.addFormField("Textbox", { name: "Textbox", bounds: { X: 300, Y: 229, Width: 150,Height: 24 } });
127127
viewer.formDesignerModule.deleteFormField(pdfviewer.formFieldCollections[0]);
128128
}
129129
</script>
@@ -135,7 +135,7 @@ Using deleteFormField method, the form field can be deleted programmatically. We
135135

136136
When the download icon is selected on the toolbar, the Form Fields will be saved in the PDF document and this action will not affect the original document. Refer the below GIF for further reference.
137137

138-
![Alt text](../../../pdfviewer/images/saveformfield.gif)
138+
![Alt text](../../pdfviewer/images/saveformfield.gif)
139139

140140
You can invoke download action using following code snippet.
141141

@@ -175,7 +175,7 @@ You can invoke download action using following code snippet.
175175

176176
When the print icon is selected on the toolbar, the PDF document will be printed along with the Form Fields added to the pages and this action will not affect the original document. Refer the below GIF for further reference.
177177

178-
![Alt text](../../../pdfviewer/images/printformfield.gif)
178+
![Alt text](../../pdfviewer/images/printformfield.gif)
179179

180180
You can invoke print action using the following code snippet.,
181181

@@ -218,7 +218,7 @@ You can invoke print action using the following code snippet.,
218218

219219
We can open the already saved PDF document contains Form Fields in it by clicking the open icon in the toolbar. Refer the below GIF for further reference.
220220

221-
![Alt text](../../../pdfviewer/images/openexistingpdf.gif)
221+
![Alt text](../../pdfviewer/images/openexistingpdf.gif)
222222

223223
## Validate form fields
224224

@@ -234,7 +234,7 @@ Add the following code snippet to validate the form fields,
234234
</div>
235235
<script>
236236
function validateFormFields(args) {
237-
var nonfilledFormFields = args.nonFillableFields;
237+
var non_filledFormFields = args.nonFillableFields;
238238
}
239239
</script>
240240

@@ -247,7 +247,7 @@ Add the following code snippet to validate the form fields,
247247
</div>
248248
<script>
249249
function validateFormFields(args) {
250-
var nonfilledFormFields = args.nonFillableFields;
250+
var non_filledFormFields = args.nonFillableFields;
251251
}
252252
</script>
253253

@@ -667,7 +667,7 @@ The following code example explains how to update the properties of the signatur
667667

668668
</script>
669669

670-
![Signature Field Settings](../../../pdfviewer/images/signature_field.png)
670+
![Signature Field Settings](../../pdfviewer/images/signature_field.png)
671671

672672
The following code example explains how to update the properties of the initial field added to the document from the form designer toolbar.
673673

@@ -704,7 +704,7 @@ window.onload = function () {
704704

705705
</script>
706706

707-
![Initial Field Settings](../../../pdfviewer/images/InitialField.png)
707+
![Initial Field Settings](../../pdfviewer/images/InitialField.png)
708708

709709
### Textbox field settings
710710

@@ -840,7 +840,7 @@ window.onload = function () {
840840

841841
</script>
842842

843-
![Textbox Field Settings](../../../pdfviewer/images/Textbox.png)
843+
![Textbox Field Settings](../../pdfviewer/images/Textbox.png)
844844

845845
### Password field settings
846846

@@ -972,7 +972,7 @@ window.onload = function () {
972972

973973
</script>
974974

975-
![Password Field Settings](../../../pdfviewer/images/Password.png)
975+
![Password Field Settings](../../pdfviewer/images/Password.png)
976976

977977
### CheckBox field settings
978978

@@ -1080,7 +1080,7 @@ window.onload = function () {
10801080

10811081
</script>
10821082

1083-
![CheckBox Field Settings](../../../pdfviewer/images/Checkbox.png)
1083+
![CheckBox Field Settings](../../pdfviewer/images/Checkbox.png)
10841084

10851085
### RadioButton field settings
10861086

@@ -1190,7 +1190,7 @@ window.onload = function () {
11901190

11911191
</script>
11921192

1193-
![RadioButton Field Settings](../../../pdfviewer/images/Radiobutton.png)
1193+
![RadioButton Field Settings](../../pdfviewer/images/Radiobutton.png)
11941194

11951195
### ListBox field settings
11961196

@@ -1213,7 +1213,7 @@ The following code example explains how to update the ListBox field properties o
12131213
function updateProperties() {
12141214
var viewer = document.getElementById('pdfviewer').ej2_instances[0];
12151215
var formField = viewer.retrieveFormFields();
1216-
const customOptions = [
1216+
var customOptions = [
12171217
{ itemName: 'item1', itemValue: 'item1' },
12181218
{ itemName: 'item2', itemValue: 'item2' },
12191219
{ itemName: 'item3', itemValue: 'item3' }
@@ -1255,7 +1255,7 @@ The following code example explains how to update the ListBox field properties o
12551255
function updateProperties() {
12561256
var viewer = document.getElementById('pdfviewer').ej2_instances[0];
12571257
var formField = viewer.retrieveFormFields();
1258-
const customOptions = [
1258+
var customOptions = [
12591259
{ itemName: 'item1', itemValue: 'item1' },
12601260
{ itemName: 'item2', itemValue: 'item2' },
12611261
{ itemName: 'item3', itemValue: 'item3' }
@@ -1292,7 +1292,7 @@ The following code example explains how to update the properties of the listbox
12921292

12931293
window.onload = function () {
12941294
var viewer = document.getElementById('pdfviewer').ej2_instances[0];
1295-
const customOptions = [
1295+
var customOptions = [
12961296
{ itemName: 'item1', itemValue: 'item1' },
12971297
{ itemName: 'item2', itemValue: 'item2' },
12981298
{ itemName: 'item3', itemValue: 'item3' }
@@ -1335,7 +1335,7 @@ window.onload = function () {
13351335

13361336
</script>
13371337

1338-
![ListBox Field Settings](../../../pdfviewer/images/Listbox.png)
1338+
![ListBox Field Settings](../../pdfviewer/images/Listbox.png)
13391339

13401340
### DropDown field settings
13411341

@@ -1358,7 +1358,7 @@ The following code example explains how to update the DropDown field properties
13581358
function updateProperties() {
13591359
var viewer = document.getElementById('pdfviewer').ej2_instances[0];
13601360
var formField = viewer.retrieveFormFields();
1361-
const customOptions = [
1361+
var customOptions = [
13621362
{ itemName: 'item1', itemValue: 'item1' },
13631363
{ itemName: 'item2', itemValue: 'item2' },
13641364
{ itemName: 'item3', itemValue: 'item3' }
@@ -1400,7 +1400,7 @@ The following code example explains how to update the DropDown field properties
14001400
function updateProperties() {
14011401
var viewer = document.getElementById('pdfviewer').ej2_instances[0];
14021402
var formField = viewer.retrieveFormFields();
1403-
const customOptions = [
1403+
var customOptions = [
14041404
{ itemName: 'item1', itemValue: 'item1' },
14051405
{ itemName: 'item2', itemValue: 'item2' },
14061406
{ itemName: 'item3', itemValue: 'item3' }
@@ -1437,7 +1437,7 @@ The following code example explains how to update the properties of the dropdown
14371437

14381438
window.onload = function () {
14391439
var viewer = document.getElementById('pdfviewer').ej2_instances[0];
1440-
const customOptions = [
1440+
var customOptions = [
14411441
{ itemName: 'item1', itemValue: 'item1' },
14421442
{ itemName: 'item2', itemValue: 'item2' },
14431443
{ itemName: 'item3', itemValue: 'item3' }
@@ -1480,4 +1480,4 @@ window.onload = function () {
14801480

14811481
</script>
14821482

1483-
![DropDownBox Field Settings](../../../pdfviewer/images/Dropdown.png)
1483+
![DropDownBox Field Settings](../../pdfviewer/images/Dropdown.png)
Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: User Interface Interaction in EJ2 ASP.NET MVC PDF Viewer | Syncfusion
44
description: Learn how User Interface Interaction in ASP.NET MVC PDF Viewer component of Syncfusion Essential JS 2 and more.
55
platform: ej2-asp-core-mvc
66
control: Create With User Interface Interaction
7-
publishingplatform: ej2-asp-core-mvc
7+
publishingplatform: ##Platform_Name##
88
documentation: ug
99
---
1010

@@ -49,35 +49,35 @@ We should inject FormDesigner module and set enableFormDesignerToolbar as true t
4949

5050
Click the Form Field icon on the toolbar and then click on to the PDF document to draw a Form Field. Refer the below GIF for further reference.
5151

52-
![Alt text](../../../pdfviewer/images/addformfield.gif)
52+
![Alt text](../../pdfviewer/images/addformfield.gif)
5353

5454
## Drag the form field
5555

5656
We provide options to drag the Form Field which is currently selected in the PDF document. Refer the below GIF for further reference.
5757

58-
![Alt text](../../../pdfviewer/images/dragformfield.gif)
58+
![Alt text](../../pdfviewer/images/dragformfield.gif)
5959

6060
## Resize the form field
6161

6262
We provide options to resize the Form Field which is currently selected in the PDF document. Refer the below GIF for further reference.
6363

64-
![Alt text](../../../pdfviewer/images/resizeformfield.gif)
64+
![Alt text](../../pdfviewer/images/resizeformfield.gif)
6565

6666
## Edit or Update the form field dynamically
6767

6868
The properties of the Form Fields can be edited using the Form Field Properties window. It can be opened by selecting the Properties option in the context menu that appears on the right by clicking the Form Field object. Refer the below image for the properties available to customize the appearance of the Form Field.
6969

70-
![Alt text](../../../pdfviewer/images/generalproperties.png)
70+
![Alt text](../../pdfviewer/images/generalproperties.png)
7171

72-
![Alt text](../../../pdfviewer/images/appearanceproperties.png)
72+
![Alt text](../../pdfviewer/images/appearanceproperties.png)
7373

74-
![Alt text](../../../pdfviewer/images/dropdownproperties.png)
74+
![Alt text](../../pdfviewer/images/dropdownproperties.png)
7575

7676
## Clipboard operation with form field
7777

7878
The PDF Viewer control supports the clipboard operations such as cut, copy and paste for Form Fields. You can right click on the Form Field object to view the context menu and select to the clipboard options that you would like to perform. Refer the below image for the options in the context menu.
7979

80-
![Alt text](../../../pdfviewer/images/clipboardformfield.png)
80+
![Alt text](../../pdfviewer/images/clipboardformfield.png)
8181

8282
## Undo and Redo
8383

0 commit comments

Comments
 (0)