Skip to content

Commit 68e6e84

Browse files
Integrated latest changes at 05-23-2024 7:30:33 PM
1 parent 4d49620 commit 68e6e84

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+1373
-34
lines changed

ej2-react-toc.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1217,8 +1217,10 @@
12171217
<li>Connecting to Adaptors
12181218
<ul>
12191219
<li><a href="/ej2-react/grid/connecting-to-adaptors/url-adaptor">Url Adaptor</a></li>
1220+
<li><a href="/ej2-react/grid/connecting-to-adaptors/odatav4-adaptor">ODataV4 Adaptor</a></li>
12201221
<li><a href="/ej2-react/grid/connecting-to-adaptors/webapi-adaptor">Web API Adaptor</a></li>
12211222
<li><a href="/ej2-react/grid/connecting-to-adaptors/graphql-adaptor">GraphQL Adaptor</a></li>
1223+
<li><a href="/ej2-react/grid/connecting-to-adaptors/web-method-adaptor">Web Method Adaptor</a></li>
12221224
</ul>
12231225
</li>
12241226
<li><a href="/ej2-react/grid/adaptive">Adaptive View</a></li>

ej2-react/code-snippet/gantt/databinding-cs3/app/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ function App (){
1212
child: 'SubTasks'
1313
};
1414
const dataSource = new DataManager({
15-
url: 'https://ej2services.syncfusion.com/production/web-services/api/GanttData',
15+
url: 'https://services.syncfusion.com/react/production/api/GanttData',
1616
adaptor: new WebApiAdaptor,
1717
crossDomain: true
1818
});

ej2-react/code-snippet/gantt/databinding-cs3/app/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ function App (){
1212
child: 'SubTasks'
1313
};
1414
const dataSource: DataManager = new DataManager({
15-
url: 'https://ej2services.syncfusion.com/production/web-services/api/GanttData',
15+
url: 'https://services.syncfusion.com/react/production/api/GanttData',
1616
adaptor: new WebApiAdaptor,
1717
crossDomain: true
1818
});

ej2-react/code-snippet/gantt/databinding-cs5/app/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ function App (){
1717
};
1818
let ganttInstance;
1919
function clickHandler() {
20-
let ajax = new Ajax("https://ej2services.syncfusion.com/production/web-services/api/GanttData","GET");
20+
let ajax = new Ajax("https://services.syncfusion.com/react/production/api/GanttData","GET");
2121
ganttInstance.showSpinner();
2222
ajax.send();
2323
ajax.onSuccess = function (data) {

ej2-react/code-snippet/gantt/databinding-cs5/app/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ function App (){
1717
};
1818
let ganttInstance:any;
1919
function clickHandler() {
20-
let ajax = new Ajax("https://ej2services.syncfusion.com/production/web-services/api/GanttData","GET");
20+
let ajax = new Ajax("https://services.syncfusion.com/react/production/api/GanttData","GET");
2121
ganttInstance.showSpinner();
2222
ajax.send();
2323
ajax.onSuccess = function (data: string) {

ej2-react/code-snippet/treegrid/data-binding-cs1/app/App.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ function App() {
77
let treegridInstance;
88
const handleClick = () => {
99
if (treegridInstance) {
10-
const fetch = new Fetch("https://ej2services.syncfusion.com/production/web-services/api/SelfReferenceData", "GET");
10+
const fetch = new Fetch("https://services.syncfusion.com/react/production/api/SelfReferenceData", "GET");
1111
treegridInstance.showSpinner();
1212
const treegrid = treegridInstance;
1313
fetch.send();

ej2-react/code-snippet/treegrid/data-binding-cs1/app/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ function App() {
99
let treegridInstance: TreeGridComponent | null;
1010
const handleClick = () => {
1111
if (treegridInstance) {
12-
const fetch = new Fetch("https://ej2services.syncfusion.com/production/web-services/api/SelfReferenceData","GET");
12+
const fetch = new Fetch("https://services.syncfusion.com/react/production/api/SelfReferenceData","GET");
1313
treegridInstance.showSpinner();
1414
const treegrid = treegridInstance;
1515
fetch.send();

ej2-react/code-snippet/treegrid/data-binding-cs4/app/App.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ function App() {
55
const data = new DataManager({
66
adaptor: new WebApiAdaptor,
77
crossDomain: true,
8-
url: 'https://ej2services.syncfusion.com/production/web-services/api/SelfReferenceData'
8+
url: 'https://services.syncfusion.com/react/production/api/SelfReferenceData'
99
});
1010
return <TreeGridComponent dataSource={data} hasChildMapping='isParent' treeColumnIndex={1} idMapping='TaskID' parentIdMapping='ParentItem' height='260' allowPaging={true}>
1111
<ColumnsDirective>

ej2-react/code-snippet/treegrid/data-binding-cs4/app/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ function App() {
88
const data = new DataManager({
99
adaptor: new WebApiAdaptor,
1010
crossDomain: true,
11-
url: 'https://ej2services.syncfusion.com/production/web-services/api/SelfReferenceData'
11+
url: 'https://services.syncfusion.com/react/production/api/SelfReferenceData'
1212
});
1313
return <TreeGridComponent dataSource={data} hasChildMapping='isParent' treeColumnIndex={1} idMapping='TaskID' parentIdMapping='ParentItem' height='260' allowPaging={true}>
1414
<ColumnsDirective>

ej2-react/code-snippet/treegrid/data-binding-cs5/app/App.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ function App() {
66
adaptor: new WebApiAdaptor,
77
crossDomain: true,
88
offline: true,
9-
url: 'https://ej2services.syncfusion.com/production/web-services/api/SelfReferenceData'
9+
url: 'https://services.syncfusion.com/react/production/api/SelfReferenceData'
1010
});
1111
return <TreeGridComponent dataSource={data} hasChildMapping='isParent' treeColumnIndex={1} idMapping='TaskID' parentIdMapping='ParentItem' height='260' allowPaging={true}>
1212
<ColumnsDirective>

ej2-react/code-snippet/treegrid/data-binding-cs5/app/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ function App() {
99
adaptor: new WebApiAdaptor,
1010
crossDomain: true,
1111
offline: true,
12-
url: 'https://ej2services.syncfusion.com/production/web-services/api/SelfReferenceData'
12+
url: 'https://services.syncfusion.com/react/production/api/SelfReferenceData'
1313
});
1414
return <TreeGridComponent dataSource={data} hasChildMapping='isParent' treeColumnIndex={1}
1515
idMapping='TaskID' parentIdMapping='ParentItem' height='260' allowPaging={true}>

ej2-react/code-snippet/treegrid/data-binding-cs6/app/App.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default class App extends React.Component {
66
data = new DataManager({
77
adaptor: new SerialNoAdaptor,
88
crossDomain: true,
9-
url: 'https://ej2services.syncfusion.com/production/web-services/api/SelfReferenceData'
9+
url: 'https://services.syncfusion.com/react/production/api/SelfReferenceData'
1010
});
1111
render() {
1212
return <TreeGridComponent dataSource={this.data} hasChildMapping='isParent' treeColumnIndex={2} idMapping='TaskID' parentIdMapping='ParentItem' height='260'>

ej2-react/code-snippet/treegrid/data-binding-cs6/app/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default class App extends React.Component<{}, {}>{
99
public data = new DataManager({
1010
adaptor: new SerialNoAdaptor,
1111
crossDomain: true,
12-
url: 'https://ej2services.syncfusion.com/production/web-services/api/SelfReferenceData'
12+
url: 'https://services.syncfusion.com/react/production/api/SelfReferenceData'
1313
});
1414
public render() {
1515
return <TreeGridComponent dataSource={this.data} hasChildMapping='isParent' treeColumnIndex={2} idMapping='TaskID' parentIdMapping='ParentItem' height='260'>

ej2-react/code-snippet/treegrid/data-binding-cs7/app/App.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ function App() {
55
const data = new DataManager({
66
adaptor: new WebApiAdaptor,
77
crossDomain: true,
8-
url: 'https://ej2services.syncfusion.com/production/web-services/api/SelfReferenceData'
8+
url: 'https://services.syncfusion.com/react/production/api/SelfReferenceData'
99
});
1010
const query = new Query().addParams('ej2treegrid', 'true');
1111
return <TreeGridComponent dataSource={data} hasChildMapping='isParent' treeColumnIndex={1} idMapping='TaskID' parentIdMapping='ParentItem' height='260' query={query}>

ej2-react/code-snippet/treegrid/data-binding-cs7/app/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ function App() {
88
const data = new DataManager({
99
adaptor: new WebApiAdaptor,
1010
crossDomain: true,
11-
url: 'https://ej2services.syncfusion.com/production/web-services/api/SelfReferenceData'
11+
url: 'https://services.syncfusion.com/react/production/api/SelfReferenceData'
1212
});
1313

1414
const query = new Query().addParams('ej2treegrid', 'true');

ej2-react/code-snippet/treegrid/indicator-cs1/app/App.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ function App() {
77
const data = new DataManager({
88
adaptor: new WebApiAdaptor,
99
crossDomain: true,
10-
url: 'https://ej2services.syncfusion.com/production/web-services/api/SelfReferenceData'
10+
url: 'https://services.syncfusion.com/react/production/api/SelfReferenceData'
1111
});
1212
return <TreeGridComponent dataSource={data} hasChildMapping='isParent' treeColumnIndex={1} idMapping='TaskID' parentIdMapping='ParentItem' height='400' loadingIndicator={{ indicatorType: 'Shimmer' }} allowPaging={true} allowSorting={true} pageSettings={pageSettings}>
1313
<ColumnsDirective>

ej2-react/code-snippet/treegrid/indicator-cs1/app/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ function App() {
1111
const data = new DataManager({
1212
adaptor: new WebApiAdaptor,
1313
crossDomain: true,
14-
url: 'https://ej2services.syncfusion.com/production/web-services/api/SelfReferenceData'
14+
url: 'https://services.syncfusion.com/react/production/api/SelfReferenceData'
1515
});
1616
return <TreeGridComponent dataSource={data} hasChildMapping='isParent' treeColumnIndex={1} idMapping='TaskID' parentIdMapping='ParentItem' height='400' loadingIndicator= {{ indicatorType: 'Shimmer' }} allowPaging={true} allowSorting={true} pageSettings={pageSettings}>
1717
<ColumnsDirective>

0 commit comments

Comments
 (0)