Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated http links #420

Open
wants to merge 3 commits into
base: hotfix/hotfix-v23.2.4
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions js/PdfViewer/Getting-Started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down Expand Up @@ -214,7 +214,7 @@ Add the script files and CSS files in the <head> 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

Expand Down Expand Up @@ -517,7 +517,7 @@ Run the sample application and you can see the PDF Viewer on the page as display

**Sample:**

<http://www.syncfusion.com/downloads/support/directtrac/general/ze/PdfViewer_GettingStarted-67533367>
<https://www.syncfusion.com/downloads/support/directtrac/general/ze/PdfViewer_GettingStarted-67533367>

![GettingStarted](Getting-Started_images/Getting-Started_img5.png)

Expand Down
4 changes: 2 additions & 2 deletions js/PdfViewer/Localization.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -906,7 +906,7 @@ The following screenshot shows the PDF viewer with tooltip in German language.

**Sample:**

<http://www.syncfusion.com/downloads/support/directtrac/general/ze/PdfViewer_Localization338521894>
<https://www.syncfusion.com/downloads/support/directtrac/general/ze/PdfViewer_Localization338521894>

![Localization](Localization_images/Localization_img1.png)

2 changes: 1 addition & 1 deletion js/PdfViewer/Toolbar-Customization.md
Original file line number Diff line number Diff line change
Expand Up @@ -458,4 +458,4 @@ Run the sample. You can view the PDF viewer with custom toolbar.

**Sample:**

<http://www.syncfusion.com/downloads/support/directtrac/general/ze/PdfViewer_ToolbarCustomization63328491>
<https://www.syncfusion.com/downloads/support/directtrac/general/ze/PdfViewer_ToolbarCustomization63328491>
24 changes: 12 additions & 12 deletions js/Spreadsheet/Open-and-Save.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Copy link
Collaborator

@Aishwarya-Ganesan Aishwarya-Ganesan Dec 3, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Inside the code snippet no need to change redirect links. Revert all places.

}
});
});
Expand All @@ -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,
Expand All @@ -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"
}
});
});
Expand All @@ -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"
}
});
});
Expand All @@ -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") };
}
Expand Down Expand Up @@ -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 %}
Expand All @@ -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") };
}
Expand All @@ -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"
}
});
});
Expand All @@ -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
Expand Down