diff --git a/js/PdfViewer/Getting-Started.md b/js/PdfViewer/Getting-Started.md index 9d020a2a5..ab22b681a 100644 --- a/js/PdfViewer/Getting-Started.md +++ b/js/PdfViewer/Getting-Started.md @@ -48,7 +48,7 @@ N> Starting with v16.2.0.x, if you reference Syncfusion assemblies from trial se **Add Scripts and Styles** -The PDF viewer has the [JQuery](http://jquery.com/# "JQuery") external dependency. +The PDF viewer has the [JQuery](https://jquery.com/# "JQuery") external dependency. The following table shows the list of ej widgets required for using the ejPdfViewer. @@ -214,7 +214,7 @@ Add the script files and CSS files in the  tag of the Default.html pag {% endhighlight %} -N> For getting started, you can use the ej.web.all.min.js file, which encapsulates all the ej widgets and frameworks in a single file. In production, it is highly recommended to use [custom script generator](http://csg.syncfusion.com "Custom Script Generator") to create custom script file with required widgets and its dependencies to reduce the size of the script files. +N> For getting started, you can use the ej.web.all.min.js file, which encapsulates all the ej widgets and frameworks in a single file. In production, it is highly recommended to use [custom script generator](https://csg.syncfusion.com "Custom Script Generator") to create custom script file with required widgets and its dependencies to reduce the size of the script files. ### Add ejPdfViewer in HTML Page @@ -517,7 +517,7 @@ Run the sample application and you can see the PDF Viewer on the page as display **Sample:** - + ![GettingStarted](Getting-Started_images/Getting-Started_img5.png) diff --git a/js/PdfViewer/Localization.md b/js/PdfViewer/Localization.md index 57be35ed9..872d7ebd1 100644 --- a/js/PdfViewer/Localization.md +++ b/js/PdfViewer/Localization.md @@ -1,7 +1,7 @@ --- layout: post title: Localization of JQuery PDF Viewer | Syncfusion -description: Learn about Localization support of JQuery PDF Viewer control and more details.Text labels provided in the ejPdfViewer control can be localized. +description: Learn about Localization support of JQuery PDF Viewer Control and more details.Text labels provided in the ejPdfViewer control can be localized. platform: js control: PDF viewer documentation: ug @@ -906,7 +906,7 @@ The following screenshot shows the PDF viewer with tooltip in German language. **Sample:** - + ![Localization](Localization_images/Localization_img1.png) diff --git a/js/PdfViewer/Toolbar-Customization.md b/js/PdfViewer/Toolbar-Customization.md index 9a2e348da..65523d045 100644 --- a/js/PdfViewer/Toolbar-Customization.md +++ b/js/PdfViewer/Toolbar-Customization.md @@ -458,4 +458,4 @@ Run the sample. You can view the PDF viewer with custom toolbar. **Sample:** - \ No newline at end of file + \ No newline at end of file diff --git a/js/Spreadsheet/Open-and-Save.md b/js/Spreadsheet/Open-and-Save.md index 06a0607b3..88425b308 100644 --- a/js/Spreadsheet/Open-and-Save.md +++ b/js/Spreadsheet/Open-and-Save.md @@ -43,7 +43,7 @@ $(function () { $("#Spreadsheet").ejSpreadsheet({ allowImport: true, importSettings: { - importMapper: "http://js.syncfusion.com/demos/ejservices/api/Spreadsheet/Import" + importMapper: "https://ej2.syncfusion.com/home/javascript.html" } }); }); @@ -57,7 +57,7 @@ Following file types can be opened in Spreadsheet * XLSX * CSV -[`Click`](http://js.syncfusion.com/demos/web/#!/azure/spreadsheet/importexport "Click") here to view online demo sample. +[`Click`](https://ej2.syncfusion.com/home/javascript.html#!/azure/spreadsheet/importexport "Click") here to view online demo sample. * Using [`getExportProps`](https://help.syncfusion.com/api/js/ejspreadsheet#methods:xlexport-getexportprops "getExportProps") method to get the export properties in the Spreadsheet. You can open excel documents in following ways, @@ -80,8 +80,8 @@ $(function () { $("#Spreadsheet").ejSpreadsheet({ allowImport: true, importSettings: { - importMapper: "http://js.syncfusion.com/demos/ejservices/api/Spreadsheet/Import", - importUrl: "http://mvc.syncfusion.com/Spreadsheet/LargeData.xlsx" + importMapper: "https://ej2.syncfusion.com/home/javascript.html", + importUrl: "https://mvc.syncfusion.com/Spreadsheet/LargeData.xlsx" } }); }); @@ -102,7 +102,7 @@ $(function () { importSettings: { importOnLoad: true, password: "Spreadsheet" //It opens the excel file using this password. - importMapper: "http://js.syncfusion.com/demos/ejservices/api/Spreadsheet/Import" + importMapper: "https://ej2.syncfusion.com/home/javascript.html" } }); }); @@ -121,7 +121,7 @@ public class SpreadSheetController : ApiController public HttpResponseMessage Import() { ImportRequest importRequest = new ImportRequest(); - importRequest.Url = "http://mvc.syncfusion.com/Spreadsheet/LargeData.xlsx"; + importRequest.Url = "https://mvc.syncfusion.com/Spreadsheet/LargeData.xlsx"; string str = Spreadsheet.Open(importRequest); return new HttpResponseMessage() { Content = new StringContent(str, Encoding.UTF8, "text/plain") }; } @@ -174,7 +174,7 @@ The code snippets to open excel document as URL from client side are as follows, function fileOpen() { var excelObj = $("#Spreadsheet").data("ejSpreadsheet"); - excelObj["import"]({Url: "http://mvc.syncfusion.com/Spreadsheet/LargeData.xlsx"}); + excelObj["import"]({Url: "https://mvc.syncfusion.com/Spreadsheet/LargeData.xlsx"}); } {% endhighlight %} @@ -190,7 +190,7 @@ The code snippets to specify excel document as URL in server side are as follows public HttpResponseMessage Import() { ImportRequest importRequest = new ImportRequest(); - importRequest.Url = "http://mvc.syncfusion.com/Spreadsheet/LargeData.xlsx"; + importRequest.Url = "https://mvc.syncfusion.com/Spreadsheet/LargeData.xlsx"; string str = Spreadsheet.Open(importRequest); return new HttpResponseMessage() { Content = new StringContent(str, Encoding.UTF8, "text/plain") }; } @@ -217,9 +217,9 @@ $(function () { exportSettings: { allowExporting: true, - excelUrl: "http://js.syncfusion.com/demos/ejservices/api/Spreadsheet/ExcelExport", - csvUrl: "http://js.syncfusion.com/demos/ejservices/api/Spreadsheet/CsvExport", - pdfUrl: "http://js.syncfusion.com/demos/ejservices/api/Spreadsheet/PdfExport" + excelUrl: "https://ej2.syncfusion.com/home/javascript.html", + csvUrl: "https://ej2.syncfusion.com/home/javascript.html", + pdfUrl: "https://ej2.syncfusion.com/home/javascript.html" } }); }); @@ -234,7 +234,7 @@ You can save Spreadsheet contents with following file types * CSV * PDF -[`Click`](http://js.syncfusion.com/demos/web/#!/azure/spreadsheet/importexport "Click") here to view online demo sample. +[`Click`](https://ej2.syncfusion.com/home/javascript.html/#!/azure/spreadsheet/importexport "Click") here to view online demo sample. You can save excel documents in following ways 1. Methods