Skip to content

SEO-174287-aspnetmvc-Redirect-link #354

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

Open
wants to merge 2 commits into
base: hotfix/hotfix-v22.2.5
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
2 changes: 1 addition & 1 deletion aspnetmvc/Chart/Exporting.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions aspnetmvc/Chart/Getting-Started.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Add the below scripts references and Syncfusion **ScriptManager** to execute the


<!-- jquery script -->
<script src="http://cdn.syncfusion.com/js/assets/external/jquery-1.10.2.min.js"></script>
<script src="https://cdn.syncfusion.com/js/assets/external/jquery-1.10.2.min.js"></script>

<!-- Essential JS UI widget -->
<script src="http://cdn.syncfusion.com/{{ site.releaseversion }}/js/web/ej.web.all.min.js"></script>
Expand All @@ -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.

Expand Down
10 changes: 5 additions & 5 deletions aspnetmvc/DataManager/Getting-Started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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<MVCdoc.OrdersView>("FlatGrid")

Expand Down Expand Up @@ -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<MVCdoc.OrdersView>("FlatGrid")

Expand Down Expand Up @@ -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)



Expand Down Expand Up @@ -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)



Expand Down
2 changes: 1 addition & 1 deletion aspnetmvc/Grid/Columns.md
Original file line number Diff line number Diff line change
Expand Up @@ -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<object>)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();
Expand Down