Skip to content

888062: Changing the new service link from old link. #3129

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

Merged
merged 1 commit into from
Jun 25, 2024
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<div>
<div>
<ejs-grid id="Grid" allowPaging="true">
<e-data-manager url="https://ej2services.syncfusion.com/production/web-services/api/Orders" crossdomain="true" adaptor="WebApiAdaptor"></e-data-manager>
<e-data-manager url="https://services.syncfusion.com/aspnet/production/api/Orders" crossdomain="true" adaptor="WebApiAdaptor"></e-data-manager>
<e-grid-columns>
<e-grid-column field="OrderID" headerText="Order ID" textAlign="Right" width="160"></e-grid-column>
<e-grid-column field="CustomerID" headerText="Customer ID" width="170"></e-grid-column>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

@Html.EJS().Grid("Grid").Height(250).DataSource(dataManger =>
{
dataManger.Url("https://ej2services.syncfusion.com/production/web-services/api/Orders").CrossDomain(true).Adaptor("WebApiAdaptor");
dataManger.Url("https://services.syncfusion.com/aspnet/production/api/Orders").CrossDomain(true).Adaptor("WebApiAdaptor");
}).Columns(col =>
{

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@

<ejs-grid id="Grid2" height="250" allowPaging="true">
<e-grid-pageSettings pageCount="3"></e-grid-pageSettings>
<e-data-manager url="https://ej2services.syncfusion.com/production/web-services/api/Orders" crossdomain="true" adaptor="WebApiAdaptor"></e-data-manager>
<e-data-manager url="https://services.syncfusion.com/aspnet/production/api/Orders" crossdomain="true" adaptor="WebApiAdaptor"></e-data-manager>
<e-grid-columns>
<e-grid-column field="OrderID" headerText="Order ID" textAlign="Right" width="160"></e-grid-column>
<e-grid-column field="CustomerID" headerText="Customer ID" width="170"></e-grid-column>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
.Readonly(true)
.EventSettings(e =>
e.DataSource(d =>
d.Url("https://ej2services.syncfusion.com/production/web-services/api/Schedule")
d.Url("https://services.syncfusion.com/aspnet/production/api/Schedule")
.Adaptor("ODataV4Adaptor")
.CrossDomain(true)
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

@{
var dataManager = new DataManager() {
Url = "https://ej2services.syncfusion.com/production/web-services/api/Schedule",
Url = "https://services.syncfusion.com/aspnet/production/api/Schedule",
Adaptor = "ODataV4Adaptor",
CrossDomain = true
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
.Height("550px")
.Readonly(true)
.EventSettings(e =>
e.DataSource(d => d.Url("https://ej2services.syncfusion.com/development/web-services/odata/")
e.DataSource(d => d.Url("https://services.syncfusion.com/aspnet/production/odata/")
.Adaptor("ODataV4Adaptor")
.CrossDomain(true)
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

@{
var dataManager = new DataManager() {
Url = "https://ej2services.syncfusion.com/development/web-services/odata/",
Url = "https://services.syncfusion.com/aspnet/production/odata/",
Adaptor = "ODataV4Adaptor",
CrossDomain = true
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
}
}
var dataManager = new ej.data.DataManager({
url: 'https://ej2services.syncfusion.com/production/web-services/api/Schedule',
url: 'https://services.syncfusion.com/aspnet/production/api/Schedule',
adaptor: new CustomAdaptor
});
var schObj = document.querySelector('.e-schedule').ej2_instances[0];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
}
}
var dataManager = new ej.data.DataManager({
url: 'https://ej2services.syncfusion.com/production/web-services/api/Schedule',
url: 'https://services.syncfusion.com/aspnet/production/api/Schedule',
adaptor: new CustomAdaptor
});

Expand Down
2 changes: 1 addition & 1 deletion ej2-asp-core-mvc/code-snippet/tab/partial-view/razor
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
@(Html.EJS().Grid("Grid1").Height(250)
.DataSource(dataManger =>
{
dataManger.Url("https://ej2services.syncfusion.com/production/web-services/api/Orders").CrossDomain(true).Adaptor("WebApiAdaptor");
dataManger.Url("https://services.syncfusion.com/aspnet/production/api/Orders").CrossDomain(true).Adaptor("WebApiAdaptor");
})
.Columns(col =>
{
Expand Down
2 changes: 1 addition & 1 deletion ej2-asp-core-mvc/code-snippet/tab/partial-view/tagHelper
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

<ejs-grid id="Grid1" height="250" allowPaging="true">
<e-grid-pageSettings pageCount="3"></e-grid-pageSettings>
<e-data-manager url="https://ej2services.syncfusion.com/production/web-services/api/Orders" crossdomain="true" adaptor="WebApiAdaptor"></e-data-manager>
<e-data-manager url="https://services.syncfusion.com/aspnet/production/api/Orders" crossdomain="true" adaptor="WebApiAdaptor"></e-data-manager>
<e-grid-columns>
<e-grid-column field="OrderID" headerText="Order ID" textAlign="Right" width="160"></e-grid-column>
<e-grid-column field="CustomerID" headerText="Customer ID" width="170"></e-grid-column>
Expand Down