Skip to content

Commit 44f0990

Browse files
Merge pull request #2985 from syncfusion-content/887541-mvcservice
887541: changing URL of datasource in asp-core-mvc files
2 parents 040425e + 1b771a0 commit 44f0990

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

ej2-asp-core-mvc/code-snippet/gantt/data-binding/ajaxBinding/tagHelper

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<script>
99
document.getElementById('dataBind').addEventListener('click', function (args) {
1010
var ganttObj = document.getElementById('Gantt').ej2_instances[0];
11-
let fetch = new Fetch("https://ej2services.syncfusion.com/production/web-services/api/GanttData","GET");
11+
let fetch = new Fetch("https://services.syncfusion.com/aspnet/production/api/GanttData","GET");
1212
ganttObj.showSpinner();
1313
fetch.send();
1414
fetch.onSuccess = function (data: any) {

ej2-asp-core-mvc/code-snippet/gantt/data-binding/lazy-loading/razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@Html.EJS().Gantt("DefaultFunctionalities").DataSource(dataManger =>
22
{
3-
dataManger.Url("https://services.syncfusion.com/aspnet/development/api/GanttLoadOnDemand").CrossDomain(true).Adaptor("WebApiAdaptor");
3+
dataManger.Url("https://services.syncfusion.com/aspnet/production/api/GanttLoadOnDemand").CrossDomain(true).Adaptor("WebApiAdaptor");
44
})
55
.Height("460px").EnableVirtualization(true).LoadChildOnDemand(false)
66
.TaskFields(ts => ts.Id("taskId").Name("taskName").StartDate("startDate").Progress("progress")

ej2-asp-core-mvc/code-snippet/gantt/data-binding/lazy-loading/tagHelper

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<ejs-gantt id='LoadOnDemand' treeColumnIndex="1" height="460px" allowSelection="true" highlightWeekends="true"
22
includeWeekend="true" projectStartDate="01/02/2000" enableVirtualization="true" loadChildOnDemand="false"
33
projectEndDate="12/01/2002">
4-
<e-data-manager url="https://services.syncfusion.com/aspnet/development/api/GanttLoadOnDemand" adaptor="WebApiAdaptor" crossDomain="true"></e-data-manager>
4+
<e-data-manager url="https://services.syncfusion.com/aspnet/production/api/GanttLoadOnDemand" adaptor="WebApiAdaptor" crossDomain="true"></e-data-manager>
55
<e-gantt-taskfields id="taskId" name="taskName" startDate="startDate"
66
duration="duration" progress="progress" hasChildMapping="isParent" parentID="parentID">
77
</e-gantt-taskfields>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@Html.EJS().Gantt("Gantt").DataSource(dataManger =>
22
{
3-
dataManger.Url("https://ej2services.syncfusion.com/production/web-services/api/GanttData").CrossDomain(true).Adaptor("WebApiAdaptor");
3+
dataManger.Url("https://services.syncfusion.com/aspnet/production/api/GanttData").CrossDomain(true).Adaptor("WebApiAdaptor");
44
}).Height("450px").TaskFields(ts => ts.Id("TaskId").Name("TaskName").StartDate("StartDate").Progress("Progress").Duration("Duration"
55
).Dependency("Predecessor").Child("SubTasks")).Render()
66

ej2-asp-core-mvc/code-snippet/gantt/data-binding/remoteData/tagHelper

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<ejs-gantt id='RemoteData' treeColumnIndex="0" height="450px" projectStartDate="02/24/2019" projectEndDate="06/10/2019">
2-
<e-data-manager url="https://ej2services.syncfusion.com/production/web-services/api/GanttData" adaptor="WebApiAdaptor" crossDomain="true"></e-data-manager>
2+
<e-data-manager url="https://services.syncfusion.com/aspnet/production/api/GanttData" adaptor="WebApiAdaptor" crossDomain="true"></e-data-manager>
33
<e-gantt-taskfields id="TaskId" name="TaskName" startDate="StartDate"
44
duration="Duration" progress="Progress" dependency="Predecessor" child="SubTasks">
55
</e-gantt-taskfields>

0 commit comments

Comments
 (0)