Skip to content

Commit b826d47

Browse files
Integrated latest changes at 05-24-2024 1:30:21 PM
1 parent 9051c1e commit b826d47

File tree

11 files changed

+11
-11
lines changed

11 files changed

+11
-11
lines changed

ej2-javascript/code-snippet/gantt/bindajax-cs1/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ let button = document.createElement('button');
2020
button.textContent = 'Bind Data';
2121
gantt.element.parentNode.insertBefore(button, gantt.element);
2222
button.addEventListener("click", function(e){
23-
let ajax = new ej.base.Ajax("https://ej2services.syncfusion.com/production/web-services/api/GanttData","GET");
23+
let ajax = new ej.base.Ajax("https://services.syncfusion.com/js/production/api/GanttData","GET");
2424
gantt.showSpinner();
2525
ajax.send();
2626
ajax.onSuccess = function (data) {

ej2-javascript/code-snippet/gantt/bindajax-cs1/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ let button: HTMLElement = document.createElement('button');
2525
button.textContent = 'Bind Data';
2626
gantt.element.parentNode.insertBefore(button, gantt.element);
2727
button.addEventListener("click", function(e){
28-
let ajax = new Ajax("https://ej2services.syncfusion.com/production/web-services/api/GanttData","GET");
28+
let ajax = new Ajax("https://services.syncfusion.com/js/production/api/GanttData","GET");
2929
gantt.showSpinner();
3030
ajax.send();
3131
ajax.onSuccess = function (data: string) {

ej2-javascript/code-snippet/gantt/bindajax-cs2/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ let button = document.createElement('button');
2020
button.textContent = 'Bind Data';
2121
gantt.element.parentNode.insertBefore(button, gantt.element);
2222
button.addEventListener("click", function(e){
23-
let ajax = new ej.base.Ajax("https://ej2services.syncfusion.com/production/web-services/api/GanttData","GET");
23+
let ajax = new ej.base.Ajax("https://services.syncfusion.com/js/production/api/GanttData","GET");
2424
gantt.showSpinner();
2525
ajax.send();
2626
ajax.onSuccess = function (data) {

ej2-javascript/code-snippet/gantt/bindajax-cs3/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ let button = document.createElement('button');
2020
button.textContent = 'Bind Data';
2121
gantt.element.parentNode.insertBefore(button, gantt.element);
2222
button.addEventListener("click", function(e){
23-
let ajax = new ej.base.Ajax("https://ej2services.syncfusion.com/production/web-services/api/GanttData","GET");
23+
let ajax = new ej.base.Ajax("https://services.syncfusion.com/js/production/api/GanttData","GET");
2424
gantt.showSpinner();
2525
ajax.send();
2626
ajax.onSuccess = function (data) {

ej2-javascript/code-snippet/gantt/bindajax-cs3/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ let button: HTMLElement = document.createElement('button');
2525
button.textContent = 'Bind Data';
2626
gantt.element.parentNode.insertBefore(button, gantt.element);
2727
button.addEventListener("click", function(e){
28-
let ajax = new Ajax("https://ej2services.syncfusion.com/production/web-services/api/GanttData","GET");
28+
let ajax = new Ajax("https://services.syncfusion.com/js/production/api/GanttData","GET");
2929
gantt.showSpinner();
3030
ajax.send();
3131
ajax.onSuccess = function (data: string) {

ej2-javascript/code-snippet/gantt/databinding-cs3/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var hostUrl = 'https://ej2services.syncfusion.com/production/web-services/';
1+
var hostUrl = 'https://services.syncfusion.com/js/production/';
22
var GanttData = new ej.data.DataManager({
33
url: hostUrl + 'api/GanttData',
44
adaptor: new ej.data.WebApiAdaptor(),

ej2-javascript/code-snippet/gantt/databinding-cs3/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { Gantt } from '@syncfusion/ej2-gantt';
55
import { DataManager, WebApiAdaptor } from '@syncfusion/ej2-data';
66

77
let dataSource: DataManager = new DataManager({
8-
url: 'https://ej2services.syncfusion.com/production/web-services/api/GanttData',
8+
url: 'https://services.syncfusion.com/js/production/api/GanttData',
99
adaptor: new WebApiAdaptor,
1010
crossDomain: true
1111
});

ej2-javascript/code-snippet/gantt/databinding-cs6/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var hostUrl = 'https://ej2services.syncfusion.com/production/web-services/';
1+
var hostUrl = 'https://services.syncfusion.com/js/production/';
22
var GanttData = new ej.data.DataManager({
33
url: hostUrl + 'api/GanttData',
44
adaptor: new ej.data.WebApiAdaptor(),

ej2-javascript/code-snippet/gantt/databinding-cs9/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var hostUrl = 'https://ej2services.syncfusion.com/production/web-services/';
1+
var hostUrl = 'https://services.syncfusion.com/js/production/';
22
var GanttData = new ej.data.DataManager({
33
url: hostUrl + 'api/GanttData',
44
adaptor: new ej.data.WebApiAdaptor(),

ej2-javascript/code-snippet/gantt/databinding-cs9/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { Gantt } from '@syncfusion/ej2-gantt';
55
import { DataManager, WebApiAdaptor } from '@syncfusion/ej2-data';
66

77
let dataSource: DataManager = new DataManager({
8-
url: 'https://ej2services.syncfusion.com/production/web-services/api/GanttData',
8+
url: 'https://services.syncfusion.com/js/production/api/GanttData',
99
adaptor: new WebApiAdaptor,
1010
crossDomain: true
1111
});

0 commit comments

Comments
 (0)