Skip to content

Commit a291542

Browse files
Integrated latest changes at 06-05-2024 7:30:38 PM
1 parent 7c9fa5e commit a291542

File tree

18 files changed

+18
-18
lines changed

18 files changed

+18
-18
lines changed

ej2-react/code-snippet/kanban/additional-cs1/app/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { DataManager, ODataAdaptor, Query } from '@syncfusion/ej2-data';
55
import { KanbanComponent, ColumnsDirective, ColumnDirective } from "@syncfusion/ej2-react-kanban";
66
class App extends React.Component {
77
data = new DataManager({
8-
url: 'https://ej2services.syncfusion.com/production/web-services/api/Kanban',
8+
url: 'https://services.syncfusion.com/react/production/api/Kanban',
99
adaptor: new ODataAdaptor
1010
});
1111
DialogOpen(args) {

ej2-react/code-snippet/kanban/additional-cs1/app/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { KanbanComponent, ColumnsDirective, ColumnDirective, DialogEventArgs } f
88

99
class App extends React.Component<{}, {}>{
1010
public data = new DataManager({
11-
url: 'https://ej2services.syncfusion.com/production/web-services/api/Kanban',
11+
url: 'https://services.syncfusion.com/react/production/api/Kanban',
1212
adaptor: new ODataAdaptor
1313
});
1414
private DialogOpen(args: DialogEventArgs): void {

ej2-react/code-snippet/kanban/additional-cs2/app/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { DataManager, ODataAdaptor, Query } from '@syncfusion/ej2-data';
55
import { KanbanComponent, ColumnsDirective, ColumnDirective } from "@syncfusion/ej2-react-kanban";
66
function App() {
77
let data = new DataManager({
8-
url: 'https://ej2services.syncfusion.com/production/web-services/api/Kanban',
8+
url: 'https://services.syncfusion.com/react/production/api/Kanban',
99
adaptor: new ODataAdaptor
1010
});
1111
function DialogOpen(args) {

ej2-react/code-snippet/kanban/additional-cs2/app/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { KanbanComponent, ColumnsDirective, ColumnDirective, DialogEventArgs } f
88

99
function App(){
1010
let data = new DataManager({
11-
url: 'https://ej2services.syncfusion.com/production/web-services/api/Kanban',
11+
url: 'https://services.syncfusion.com/react/production/api/Kanban',
1212
adaptor: new ODataAdaptor
1313
});
1414
function DialogOpen(args: DialogEventArgs): void {

ej2-react/code-snippet/kanban/ajax-cs1/app/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { KanbanComponent, ColumnsDirective, ColumnDirective } from "@syncfusion/
66
class App extends React.Component {
77
kanban;
88
componentDidMount() {
9-
const ajax = new Ajax("https://ej2services.syncfusion.com/production/web-services/api/Orders", "GET");
9+
const ajax = new Ajax("https://services.syncfusion.com/react/production/api/Orders", "GET");
1010
ajax.send();
1111
ajax.onSuccess = (data) => {
1212
if (this.kanban) {

ej2-react/code-snippet/kanban/ajax-cs1/app/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { KanbanComponent, ColumnsDirective, ColumnDirective, Kanban } from "@syn
99
class App extends React.Component<{}, {}>{
1010
public kanban: Kanban | null;
1111
public componentDidMount(){
12-
const ajax = new Ajax("https://ej2services.syncfusion.com/production/web-services/api/Orders", "GET");
12+
const ajax = new Ajax("https://services.syncfusion.com/react/production/api/Orders", "GET");
1313
ajax.send();
1414
ajax.onSuccess = (data: any) => {
1515
if (this.kanban) {

ej2-react/code-snippet/kanban/ajax-cs2/app/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { KanbanComponent, ColumnsDirective, ColumnDirective } from "@syncfusion/
66
function App() {
77
let kanban;
88
function componentDidMount() {
9-
const ajax = new Ajax("https://ej2services.syncfusion.com/production/web-services/api/Orders", "GET");
9+
const ajax = new Ajax("https://services.syncfusion.com/react/production/api/Orders", "GET");
1010
ajax.send();
1111
ajax.onSuccess = (data) => {
1212
if (kanban) {

ej2-react/code-snippet/kanban/ajax-cs2/app/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { KanbanComponent, ColumnsDirective, ColumnDirective, Kanban } from "@syn
1010
function App(){
1111
let kanbanObj: KanbanComponent|null;
1212
React.useEffect(() => {
13-
const ajax = new Ajax("https://ej2services.syncfusion.com/production/web-services/api/Orders", "GET");
13+
const ajax = new Ajax("https://services.syncfusion.com/react/production/api/Orders", "GET");
1414
ajax.send();
1515
ajax.onSuccess = (data: any) => {
1616
if (kanbanObj) {

ej2-react/code-snippet/kanban/custom-cs1/app/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { TaskIdAdaptor } from './TaskIdAdaptor';
88

99
class App extends React.Component<{}, {}>{
1010
public data = new DataManager({
11-
url: 'https://ej2services.syncfusion.com/production/web-services/api/Kanban',
11+
url: 'https://services.syncfusion.com/react/production/api/Kanban',
1212
adaptor: new TaskIdAdaptor
1313
});
1414
private DialogOpen(args: DialogEventArgs): void {

ej2-react/code-snippet/kanban/custom-cs2/app/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { TaskIdAdaptor } from './TaskIdAdaptor';
88

99
function App(){
1010
let data = new DataManager({
11-
url: 'https://ej2services.syncfusion.com/production/web-services/api/Kanban',
11+
url: 'https://services.syncfusion.com/react/production/api/Kanban',
1212
adaptor: new TaskIdAdaptor
1313
});
1414
function DialogOpen(args: DialogEventArgs): void {

ej2-react/code-snippet/kanban/odata-cs1/app/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { DataManager, ODataAdaptor } from '@syncfusion/ej2-data';
55
import { KanbanComponent, ColumnsDirective, ColumnDirective } from "@syncfusion/ej2-react-kanban";
66
class App extends React.Component {
77
data = new DataManager({
8-
url: 'https://ej2services.syncfusion.com/production/web-services/api/Kanban',
8+
url: 'https://services.syncfusion.com/react/production/api/Kanban',
99
adaptor: new ODataAdaptor,
1010
crossDomain: true
1111
});

ej2-react/code-snippet/kanban/odata-cs1/app/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { KanbanComponent, ColumnsDirective, ColumnDirective, DialogEventArgs } f
88

99
class App extends React.Component<{}, {}>{
1010
public data = new DataManager({
11-
url: 'https://ej2services.syncfusion.com/production/web-services/api/Kanban',
11+
url: 'https://services.syncfusion.com/react/production/api/Kanban',
1212
adaptor: new ODataAdaptor,
1313
crossDomain: true
1414
});

ej2-react/code-snippet/kanban/odata-cs2/app/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { DataManager, ODataAdaptor } from '@syncfusion/ej2-data';
55
import { KanbanComponent, ColumnsDirective, ColumnDirective } from "@syncfusion/ej2-react-kanban";
66
function App() {
77
let data = new DataManager({
8-
url: 'https://ej2services.syncfusion.com/production/web-services/api/Kanban',
8+
url: 'https://services.syncfusion.com/react/production/api/Kanban',
99
adaptor: new ODataAdaptor,
1010
crossDomain: true
1111
});

ej2-react/code-snippet/kanban/odata-cs2/app/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { KanbanComponent, ColumnsDirective, ColumnDirective, DialogEventArgs } f
88

99
function App(){
1010
let data = new DataManager({
11-
url: 'https://ej2services.syncfusion.com/production/web-services/api/Kanban',
11+
url: 'https://services.syncfusion.com/react/production/api/Kanban',
1212
adaptor: new ODataAdaptor,
1313
crossDomain: true
1414
});

ej2-react/code-snippet/kanban/remote-data-cs1/app/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { DataManager, ODataAdaptor } from '@syncfusion/ej2-data';
55
import { KanbanComponent, ColumnsDirective, ColumnDirective } from "@syncfusion/ej2-react-kanban";
66
class App extends React.Component {
77
data = new DataManager({
8-
url: 'https://ej2services.syncfusion.com/production/web-services/api/Kanban',
8+
url: 'https://services.syncfusion.com/react/production/api/Kanban',
99
adaptor: new ODataAdaptor
1010
});
1111
DialogOpen(args) {

ej2-react/code-snippet/kanban/remote-data-cs1/app/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { KanbanComponent, ColumnsDirective, ColumnDirective, DialogEventArgs } f
88

99
class App extends React.Component<{}, {}>{
1010
public data = new DataManager({
11-
url: 'https://ej2services.syncfusion.com/production/web-services/api/Kanban',
11+
url: 'https://services.syncfusion.com/react/production/api/Kanban',
1212
adaptor: new ODataAdaptor
1313
});
1414
private DialogOpen(args: DialogEventArgs): void {

ej2-react/code-snippet/kanban/remote-data-cs2/app/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { DataManager, ODataAdaptor } from '@syncfusion/ej2-data';
55
import { KanbanComponent, ColumnsDirective, ColumnDirective } from "@syncfusion/ej2-react-kanban";
66
function App() {
77
let data = new DataManager({
8-
url: 'https://ej2services.syncfusion.com/production/web-services/api/Kanban',
8+
url: 'https://services.syncfusion.com/react/production/api/Kanban',
99
adaptor: new ODataAdaptor
1010
});
1111
function DialogOpen(args) {

ej2-react/code-snippet/kanban/remote-data-cs2/app/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { KanbanComponent, ColumnsDirective, ColumnDirective, DialogEventArgs } f
88

99
function App(){
1010
let data = new DataManager({
11-
url: 'https://ej2services.syncfusion.com/production/web-services/api/Kanban',
11+
url: 'https://services.syncfusion.com/react/production/api/Kanban',
1212
adaptor: new ODataAdaptor
1313
});
1414
function DialogOpen(args: DialogEventArgs): void {

0 commit comments

Comments
 (0)