diff --git a/aspnetmvc/Chart/Exporting.md b/aspnetmvc/Chart/Exporting.md index 4f4337d5..2b0ea6af 100644 --- a/aspnetmvc/Chart/Exporting.md +++ b/aspnetmvc/Chart/Exporting.md @@ -42,7 +42,7 @@ In client-side rendered chart can be exported as PNG image or as SVG file. {% endhighlight %} -[Click](https://mvc.syncfusion.com/demos/web/chart/exports) here to view the Export chart online demo sample. +[Click](https://ej2.syncfusion.com/home/aspnetmvc.html#platform) here to view the Export chart online demo sample. ## Server-side Exporting diff --git a/aspnetmvc/Chart/Getting-Started.md b/aspnetmvc/Chart/Getting-Started.md index 133c7213..910947af 100644 --- a/aspnetmvc/Chart/Getting-Started.md +++ b/aspnetmvc/Chart/Getting-Started.md @@ -44,7 +44,7 @@ Add the below scripts references and Syncfusion **ScriptManager** to execute the - + @@ -60,7 +60,7 @@ N> If you are using the Essential Studio below 13.4.0.53 version, then you need To render the MVC Chart in unobtrusive mode refer **ej.unobtrusive.js** script file. Otherwise set false to **UnobtrusiveJavaScriptEnabled** in Web.config file. -In the above code, ej.web.all.min.js script reference has been added for demonstration purpose. It is not recommended to use this for deployment purpose, as its file size is larger since it contains all the widgets. Instead, you can use [`CSG`](https://csg.syncfusion.com/) utility to generate a custom script file with the required widgets for deployment purpose. +In the above code, ej.web.all.min.js script reference has been added for demonstration purpose. It is not recommended to use this for deployment purpose, as its file size is larger since it contains all the widgets. Instead, you can use [`CSG`](https://csg.syncfusion.com) utility to generate a custom script file with the required widgets for deployment purpose. To know more about getting started, You can refer to [MVC Getting Started documentation](https://help.syncfusion.com/aspnetmvc/getting-started) to create a new project and add necessary dll’s and script files. diff --git a/aspnetmvc/DataManager/Getting-Started.md b/aspnetmvc/DataManager/Getting-Started.md index 11cfa2c0..30cd6640 100644 --- a/aspnetmvc/DataManager/Getting-Started.md +++ b/aspnetmvc/DataManager/Getting-Started.md @@ -78,7 +78,7 @@ In this application, as you have web service for Northwnd database, you can assi {% highlight CSHTML %} -@Html.EJ().DataManager("FlatData").URL("http://mvc.syncfusion.com/Services/Northwnd.svc/Orders/").CrossDomain(true) +@Html.EJ().DataManager("FlatData").URL("https://mvc.syncfusion.com/Services/Northwnd.svc/Orders/").CrossDomain(true) {% endhighlight %} You can use the ej.Query to generate the report from web service. @@ -89,7 +89,7 @@ You can bind the DataManager with Grid by defining the ID of DataManager in the {% highlight CSHTML %} -@Html.EJ().DataManager("FlatData").URL("http://mvc.syncfusion.com/Services/Northwnd.svc/Orders/").CrossDomain(true) +@Html.EJ().DataManager("FlatData").URL("https://mvc.syncfusion.com/Services/Northwnd.svc/Orders/").CrossDomain(true) @(Html.EJ().Grid("FlatGrid") @@ -136,7 +136,7 @@ The select property of ejQuery is used to retrieve the specified columns from th {% highlight CSHTML %} -@Html.EJ().DataManager("FlatData").URL("http://mvc.syncfusion.com/Services/Northwnd.svc/Orders/").CrossDomain(true) +@Html.EJ().DataManager("FlatData").URL("https://mvc.syncfusion.com/Services/Northwnd.svc/Orders/").CrossDomain(true) @(Html.EJ().Grid("FlatGrid") @@ -182,7 +182,7 @@ The sortBy property of ejQuery is used to sort the records based on the field an {% highlight CSHTML %} -@Html.EJ().DataManager("FlatData").URL("http://mvc.syncfusion.com/Services/Northwnd.svc/Orders/").CrossDomain(true) +@Html.EJ().DataManager("FlatData").URL("https://mvc.syncfusion.com/Services/Northwnd.svc/Orders/").CrossDomain(true) @@ -231,7 +231,7 @@ The Page property of ejQuery is used to retrieve the records based on the given {% highlight CSHTML %} -@Html.EJ().DataManager("FlatData").URL("http://mvc.syncfusion.com/Services/Northwnd.svc/Orders/").CrossDomain(true) +@Html.EJ().DataManager("FlatData").URL("https://mvc.syncfusion.com/Services/Northwnd.svc/Orders/").CrossDomain(true) diff --git a/aspnetmvc/Grid/Columns.md b/aspnetmvc/Grid/Columns.md index b8f09111..3b62fe34 100644 --- a/aspnetmvc/Grid/Columns.md +++ b/aspnetmvc/Grid/Columns.md @@ -1083,7 +1083,7 @@ The following code example describes the above behavior. col.Field("OrderID").IsPrimaryKey(true).Add(); col.Field("EmployeeID").HeaderText("First Name").ForeignKeyField("EmployeeID").ForeignKeyValue("FirstName").DataSource((IEnumerable)ViewBag.DataSource2).Add(); //(or) - col.Field("EmployeeID").HeaderText("First Name").ForeignKeyField("EmployeeID").ForeignKeyValue("FirstName").DataSource("http://mvc.syncfusion.com/Services/Northwnd.svc/Employees/").Add(); + col.Field("EmployeeID").HeaderText("First Name").ForeignKeyField("EmployeeID").ForeignKeyValue("FirstName").DataSource("https://mvc.syncfusion.com/Services/Northwnd.svc/Employees/").Add(); col.Field("CustomerID").Add(); col.Field("Freight").Add(); col.Field("ShipCity").Add();