Skip to content

DOCINFRA-2341_merged_using_automation #159

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
Nov 30, 2023
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
4 changes: 2 additions & 2 deletions ej2-javascript/code-snippet/grid/grid-cs12/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var data = new ej.data.DataManager({
url: 'https://services.odata.org/V4/Northwind/Northwind.svc/Orders/?$top=7',
adaptor: new ej.data.ODataV4Adaptor()
url: 'https://services.syncfusion.com/js/production/api/Orders',
adaptor: new ej.data.ODataAdaptor()
});

var grid = new ej.grids.Grid({
Expand Down
2 changes: 1 addition & 1 deletion ej2-javascript/code-snippet/grid/grid-cs12/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Grid } from '@syncfusion/ej2-grids';
import { DataManager, ODataAdaptor } from '@syncfusion/ej2-data';

let data: DataManager = new DataManager({
url: 'https://js.syncfusion.com/demos/ejServices/Wcf/Northwind.svc/Orders/?$top=7',
url: 'https://services.syncfusion.com/js/production/api/Orders',
adaptor: new ODataAdaptor
});

Expand Down
2 changes: 1 addition & 1 deletion ej2-javascript/code-snippet/grid/grid-cs13/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
var data = new ej.data.DataManager({
url: 'https://js.syncfusion.com/ejServices/Wcf/Northwind.svc/Orders/?$top=7',
url: 'https://services.syncfusion.com/js/production/api/Orders',
adaptor: new ej.data.ODataAdaptor(),
crossDomain: true
});
Expand Down
2 changes: 1 addition & 1 deletion ej2-javascript/code-snippet/grid/grid-cs13/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Grid } from '@syncfusion/ej2-grids';
import { DataManager, ODataAdaptor } from '@syncfusion/ej2-data';

let data: DataManager = new DataManager({
url: 'https://js.syncfusion.com/ejServices/Wcf/Northwind.svc/Orders/?$top=7',
url: 'https://services.syncfusion.com/js/production/api/Orders',
adaptor: new ODataAdaptor,
crossDomain: true
});
Expand Down
2 changes: 1 addition & 1 deletion ej2-javascript/code-snippet/grid/grid-cs133/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
var data = new ej.data.DataManager({
url: 'https://js.syncfusion.com/demos/ejServices/Wcf/Northwind.svc/Orders/',
url: 'https://services.syncfusion.com/js/production/api/Orders',
adaptor: new ej.data.ODataAdaptor()
});

Expand Down
4 changes: 2 additions & 2 deletions ej2-javascript/code-snippet/grid/grid-cs133/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ import { Grid, Page, Sort, Filter } from '@syncfusion/ej2-grids';
import { DataManager, ODataAdaptor } from '@syncfusion/ej2-data';
Grid.Inject(Page, Sort, Filter);
let data: DataManager = new DataManager({
url: 'https://js.syncfusion.com/demos/ejServices/Wcf/Northwind.svc/Orders/',
url: 'https://services.syncfusion.com/js/production/api/Orders',
adaptor: new ODataAdaptor
});
let grid: Grid = new Grid({
dataSource: data,
allowPaging: true,
allowSorting: true,
allowFiltering: true,
pageSettings: { pageCount: 3 }
pageSettings: { pageCount: 3 },
loadingIndicator: { indicatorType: 'Shimmer' },
columns: [
{ field: 'OrderID', headerText: 'Order ID', textAlign: 'Right', width: 120, type: 'number' },
Expand Down
2 changes: 1 addition & 1 deletion ej2-javascript/code-snippet/grid/grid-cs15/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class SerialNoAdaptor extends ej.data.ODataV4Adaptor {
}

var data = new ej.data.DataManager({
url: 'https://services.odata.org/V4/Northwind/Northwind.svc/Orders/?$top=7',
url: 'https://services.syncfusion.com/js/production/api/Orders',
adaptor: new SerialNoAdaptor()
});

Expand Down
2 changes: 1 addition & 1 deletion ej2-javascript/code-snippet/grid/grid-cs15/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class SerialNoAdaptor extends ODataAdaptor {
}

let data: DataManager = new DataManager({
url: 'https://js.syncfusion.com/demos/ejServices/Wcf/Northwind.svc/Orders/?$top=7',
url: 'https://services.syncfusion.com/js/production/api/Orders',
adaptor: new SerialNoAdaptor
});

Expand Down
4 changes: 2 additions & 2 deletions ej2-javascript/code-snippet/grid/grid-cs16/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var data = new ej.data.DataManager({
url: 'https://services.odata.org/V4/Northwind/Northwind.svc/Orders',
adaptor: new ej.data.ODataV4Adaptor(),
url: 'https://services.syncfusion.com/js/production/api/Orders',
adaptor: new ej.data.ODataAdaptor(),
offline: true
});
ej.grids.Grid.Inject(ej.grids.Page, ej.grids.Sort, ej.grids.Group);
Expand Down
2 changes: 1 addition & 1 deletion ej2-javascript/code-snippet/grid/grid-cs16/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { DataManager, ODataAdaptor } from '@syncfusion/ej2-data';
Grid.Inject(Page, Sort, Group);

let data: DataManager = new DataManager({
url: 'https://js.syncfusion.com/demos/ejServices/Wcf/Northwind.svc/Orders/',
url: 'https://services.syncfusion.com/js/production/api/Orders',
adaptor: new ODataAdaptor,
offline: true
});
Expand Down
4 changes: 2 additions & 2 deletions ej2-javascript/code-snippet/grid/grid-cs9/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var data = new ej.data.DataManager({
url: 'https://services.odata.org/V4/Northwind/Northwind.svc/Orders/?$top=7',
adaptor: new ej.data.ODataV4Adaptor()
url: 'https://services.syncfusion.com/js/production/api/Orders',
adaptor: new ej.data.ODataAdaptor()
});
var grid = new ej.grids.Grid({
dataSource: data,
Expand Down
2 changes: 1 addition & 1 deletion ej2-javascript/code-snippet/grid/grid-cs9/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Grid } from '@syncfusion/ej2-grids';
import { DataManager, Query, ODataAdaptor } from '@syncfusion/ej2-data';

let data: DataManager = new DataManager({
url: 'https://js.syncfusion.com/demos/ejServices/Wcf/Northwind.svc/Orders/?$top=7',
url: 'https://services.syncfusion.com/js/production/api/Orders',
adaptor: new ODataAdaptor
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ System.config({
"@syncfusion/ej2-file-utils": "syncfusion:ej2-file-utils/dist/ej2-file-utils.umd.min.js",
"@syncfusion/ej2-compression": "syncfusion:ej2-compression/dist/ej2-compression.umd.min.js",
"@syncfusion/ej2-dropdowns":"syncfusion:ej2-dropdowns/dist/ej2-dropdowns.umd.min.js",
"@syncfusion/ej2-notifications":"syncfusion:ej2-notifications/dist/ej2-notifications.umd.min.js",
"@syncfusion/ej2-lists": "syncfusion:ej2-lists/dist/ej2-lists.umd.min.js",
"@syncfusion/ej2-inputs": "syncfusion:ej2-inputs/dist/ej2-inputs.umd.min.js",
"@syncfusion/ej2-calendars": "syncfusion:ej2-calendars/dist/ej2-calendars.umd.min.js",
Expand Down