Skip to content

Commit 20b309e

Browse files
Merge pull request #3029 from Syncfusion-Content/development
DOCINFRA-2341_merged_using_automation
2 parents f5c3805 + cb41bd7 commit 20b309e

File tree

61 files changed

+675
-73
lines changed

Some content is hidden

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

61 files changed

+675
-73
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
title: Essential Studio for ##Platform_Name## Main Release Release Notes
3+
description: Essential Studio for ##Platform_Name## Main Release Release Notes
4+
platform: ej2-asp-core-mvc
5+
documentation: ug
6+
---
7+
8+
# Essential Studio for ##Platform_Name## Release Notes
9+
10+
{% include release-info.html date="June 11, 2024" version="v26.1.35" %}
11+
12+
{% directory path: _includes/release-notes/v26.1.35 %}
13+
14+
{% include {{file.url}} %}
15+
16+
{% enddirectory %}

ej2-asp-core-mvc/code-snippet/chart/axis/working-data/remote-data/razor

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
@Html.EJS().Chart("container").Series(series =>
33
{
44
series.Type(Syncfusion.EJ2.Charts.ChartSeriesType.Column).
5-
XName("Assignee").Marker(ViewBag.marker).
6-
YName("Estimate").DataSource("dataManager").
5+
XName("CustomerID").Marker(ViewBag.marker).
6+
YName("Freight").DataSource("dataManager").
77
Query("query").
88
Name("Story Point").Add();
99

@@ -20,7 +20,7 @@
2020
}
2121
<script>
2222
var dataManager = new ej.data.DataManager({
23-
url: 'https://mvc.syncfusion.com/Services/Northwnd.svc/Tasks/'
23+
url: 'https://services.syncfusion.com/aspnet/production/api/orders'
2424
});
2525
var query = new ej.data.Query().take(5).where('Estimate', 'lessThan', 3, false);
2626
</script>

ej2-asp-core-mvc/code-snippet/chart/axis/working-data/remote-data/tagHelper

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
<e-chart-primaryxaxis title="Assignee" rangePadding="Additional" valueType="Category"></e-chart-primaryxaxis>
44
<e-series-collection>
5-
<e-series name="Story Point" xName="Assignee" width=2 yName="Estimate" type="@Syncfusion.EJ2.Charts.ChartSeriesType.Column" query="new ej.data.Query().take(5).where('Estimate', 'lessThan', 3, false)">
6-
<e-data-manager url='https://mvc.syncfusion.com/Services/Northwnd.svc/Tasks/' crossdomain="true"></e-data-manager>
5+
<e-series name="Story Point" xName="CustomerID" width=2 yName="Freight" type="@Syncfusion.EJ2.Charts.ChartSeriesType.Column" query="new ej.data.Query().take(5).where('Estimate', 'lessThan', 3, false)">
6+
<e-data-manager url='https://services.syncfusion.com/aspnet/production/api/orders' crossdomain="true"></e-data-manager>
77
<e-series-marker>
88
<e-series-datalabel visible="true" position="Top"></e-series-datalabel>
99
</e-series-marker>

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>

ej2-asp-core-mvc/code-snippet/kanban/data-binding/additional-parameter/razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@Html.EJS().Kanban("kanban").KeyField("Status").AllowDragAndDrop(false).DataSource(dataManger =>
2-
{ dataManger.Url("https://ej2services.syncfusion.com/production/web-services/api/Kanban").CrossDomain(true);
2+
{ dataManger.Url("https://services.syncfusion.com/aspnet/production/api/Kanban").CrossDomain(true);
33
}).Query("new ej.data.Query().addParams('ej2kanban', 'true')").Columns(col=> {
44
col.HeaderText("To Do").KeyField("Open").Add();
55
col.HeaderText("In Progress").KeyField("InProgress").Add();

ej2-asp-core-mvc/code-snippet/kanban/data-binding/additional-parameter/tagHelper

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<ejs-kanban id="Kanban" keyField="Status" allowDragAndDrop="false" dialogOpen="dialogOpen" query="new ej.data.Query().addParams('ej2kanban', 'true')" >
2-
<e-data-manager url="https://ej2services.syncfusion.com/production/web-services/api/Kanban" crossdomain="true"></e-data-manager>
2+
<e-data-manager url="https://services.syncfusion.com/aspnet/production/api/Kanban" crossdomain="true"></e-data-manager>
33
<e-kanban-columns>
44
<e-kanban-column headerText="To Do" keyField="Open"></e-kanban-column>
55
<e-kanban-column headerText="In Progress" keyField="InProgress"></e-kanban-column>

ej2-asp-core-mvc/code-snippet/kanban/data-binding/custom-adaptor/razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
}
2424
var kanban = document.querySelector('#kanban').ej2_instances[0];
2525
kanban.dataSource = new ej.data.DataManager({
26-
url: "https://ej2services.syncfusion.com/production/web-services/api/Kanban",
26+
url: "https://services.syncfusion.com/aspnet/production/api/Kanban",
2727
adaptor: new TaskIdAdaptor()
2828
});
2929
}

ej2-asp-core-mvc/code-snippet/kanban/data-binding/custom-adaptor/tagHelper

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
}
2626
var kanban = document.querySelector('#kanban').ej2_instances[0];
2727
kanban.dataSource = new ej.data.DataManager({
28-
url: "https://ej2services.syncfusion.com/production/web-services/api/Kanban",
28+
url: "https://services.syncfusion.com/aspnet/production/api/Kanban",
2929
adaptor: new TaskIdAdaptor()
3030
});
3131
}

ej2-asp-core-mvc/code-snippet/kanban/data-binding/data-via-ajax/razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
var kanbanObj = this;
1414
var button = document.getElementById('btn');
1515
button.addEventListener("click", function (e) {
16-
let ajax = new ej.base.Ajax("https://ej2services.syncfusion.com/production/web-services/api/Orders", "GET");
16+
let ajax = new ej.base.Ajax("https://services.syncfusion.com/aspnet/production/api/Orders", "GET");
1717
ajax.send();
1818
ajax.onSuccess = function (data) {
1919
kanbanObj.dataSource = JSON.parse(data);

ej2-asp-core-mvc/code-snippet/kanban/data-binding/data-via-ajax/tagHelper

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
var kanbanObj = this;
1414
var button = document.getElementById('btn');
1515
button.addEventListener("click", function (e) {
16-
let ajax = new ej.base.Ajax("https://ej2services.syncfusion.com/production/web-services/api/Orders", "GET");
16+
let ajax = new ej.base.Ajax("https://services.syncfusion.com/aspnet/production/api/Orders", "GET");
1717
ajax.send();
1818
ajax.onSuccess = function (data) {
1919
kanbanObj.dataSource = JSON.parse(data);

ej2-asp-core-mvc/code-snippet/kanban/data-binding/odata-service/razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@Html.EJS().Kanban("kanban").KeyField("Status").AllowDragAndDrop(false).DataSource(dataManger => {
2-
dataManger.Url("https://ej2services.syncfusion.com/production/web-services/api/Kanban").CrossDomain(true).Adaptor("ODataAdaptor");
2+
dataManger.Url("https://services.syncfusion.com/aspnet/production/api/Kanban").CrossDomain(true).Adaptor("ODataAdaptor");
33
}).Columns(col=> {
44
col.HeaderText("To Do").KeyField("Open").Add();
55
col.HeaderText("In Progress").KeyField("InProgress").Add();

ej2-asp-core-mvc/code-snippet/kanban/data-binding/odata-v4-service/tagHelper

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<ejs-kanban id="Kanban" keyField="Status" allowDragAndDrop="false" dialogOpen="dialogOpen" >
2-
<e-data-manager url="https://ej2services.syncfusion.com/production/web-services/api/Kanban" adaptor="ODataAdaptor" crossdomain="true"></e-data-manager>
2+
<e-data-manager url="https://services.syncfusion.com/aspnet/production/api/Kanban" adaptor="ODataAdaptor" crossdomain="true"></e-data-manager>
33
<e-kanban-columns>
44
<e-kanban-column headerText="To Do" keyField="Open"></e-kanban-column>
55
<e-kanban-column headerText="In Progress" keyField="InProgress"></e-kanban-column>

ej2-asp-core-mvc/code-snippet/kanban/data-binding/remote-data/razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@Html.EJS().Kanban("kanban").KeyField("Status").AllowDragAndDrop(false).DataSource(dataManger =>
2-
{ dataManger.Url("https://ej2services.syncfusion.com/production/web-services/api/Kanban").CrossDomain(true);
2+
{ dataManger.Url("https://services.syncfusion.com/aspnet/production/api/Kanban").CrossDomain(true);
33
}).Columns(col=> {
44
col.HeaderText("To Do").KeyField("Open").Add();
55
col.HeaderText("In Progress").KeyField("InProgress").Add();

ej2-asp-core-mvc/code-snippet/kanban/data-binding/remote-data/tagHelper

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<ejs-kanban id="Kanban" keyField="Status" allowDragAndDrop="false" dialogOpen="dialogOpen" >
2-
<e-data-manager url="https://ej2services.syncfusion.com/production/web-services/api/Kanban" crossdomain="true"></e-data-manager>
2+
<e-data-manager url="https://services.syncfusion.com/aspnet/production/api/Kanban" crossdomain="true"></e-data-manager>
33
<e-kanban-columns>
44
<e-kanban-column headerText="To Do" keyField="Open"></e-kanban-column>
55
<e-kanban-column headerText="In Progress" keyField="InProgress"></e-kanban-column>

ej2-asp-core-mvc/code-snippet/listview/databinding/remote-data/razor

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<div class="control-section">
33
@Html.EJS().ListView("remotelist").Enable(true).DataSource(dataManger =>
44
{
5-
dataManger.Url("//js.syncfusion.com/demos/ejServices/Wcf/Northwind.svc/").CrossDomain(true);
5+
dataManger.Url("https://services.syncfusion.com/aspnet/production/api/").CrossDomain(true);
66

7-
}).Query("new ej.data.Query().from('Products').select('ProductID,ProductName').take(10)").Fields(new Syncfusion.EJ2.Lists.ListViewFieldSettings { Id = "ProductID" , Text = "ProductName" }).ShowHeader(true).HeaderTitle("Products").Render()
7+
}).Query("new ej.data.Query().from('ListView').select('EmployeeID,FirstName').take(10)").Fields(new Syncfusion.EJ2.Lists.ListViewFieldSettings { Id = "EmployeeID" , Text = "FirstName" }).ShowHeader(true).HeaderTitle("Employees").Render()
88
</div>

ej2-asp-core-mvc/code-snippet/listview/databinding/remote-data/tagHelper

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<div class="control-section">
22
<!-- ListView element -->
3-
<ejs-listview enable="true" id="remotelist" headerTitle="Products" showHeader="true" query="new ej.data.Query().from('Products').select('ProductID,ProductName').take(10)">
4-
<e-data-manager url="//js.syncfusion.com/demos/ejServices/Wcf/Northwind.svc/" crossDomain="true">
3+
<ejs-listview enable="true" id="remotelist" headerTitle="Employees" showHeader="true" query="new ej.data.Query().from('ListView').select('EmployeeID,FirstName').take(10)">
4+
<e-data-manager url="https://services.syncfusion.com/aspnet/production/api/" crossDomain="true">
55
</e-data-manager>
6-
<e-listview-fieldsettings id="ProductID" text="ProductName">
6+
<e-listview-fieldsettings id="EmployeeID" text="FirstName">
77
</e-listview-fieldsettings>
88
</ejs-listview>
99
</div>

ej2-asp-core-mvc/code-snippet/rich-text-editor/file-browser/controller.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{
33
public ActionResult Index()
44
{
5-
string hostUrl = "https://ej2-aspcore-service.azurewebsites.net/";
5+
string hostUrl = "https://services.syncfusion.com/aspnet/production/";
66
ViewBag.ajaxSettings = new {
77
url = hostUrl + "api/FileManager/FileOperations",
88
getImageUrl = hostUrl + "api/FileManager/GetImage",
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
public class HomeController : Controller
2+
{
3+
4+
public ActionResult Index()
5+
{
6+
ViewBag.items = new[] { "CreateTable" };
7+
ViewBag.Table = new[] {
8+
"TableHeader", "TableRows", "TableColumns", "TableCell", "-", "BackgroundColor", "TableRemove", "TableCellVerticalAlign", "Styles"
9+
};
10+
return View();
11+
}
12+
}
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
@Html.EJS().RichTextEditor("table").QuickToolbarSettings(e => { e.Table((object)ViewBag.Table); }).ContentTemplate(@<div>
2+
<h2>Discover the Table's Powerful Features</h2><p>A table can be created in the editor using either a keyboard shortcut or the toolbar. With the quick
3+
toolbar, you can
4+
perform table cell insert, delete, split, and merge operations. You can style the table cells using
5+
background
6+
colours and borders.</p><table class="e-rte-table" style="width: 100%; min-width: 0px; height: 151px">
7+
<thead>
8+
<tr>
9+
<th><span>Name</span><br/></th>
10+
<th><span>Age</span><br/></th>
11+
<th><span>Gender</span><br/></th>
12+
<th><span>Occupation</span><br/></th>
13+
</tr>
14+
</thead>
15+
<tbody>
16+
<tr>
17+
<td>Selma Rose</td>
18+
<td>30</td>
19+
<td>Female</td>
20+
<td><span>Engineer</span><br/></td>
21+
</tr>
22+
<tr>
23+
<td><span>Robert</span><br/></td>
24+
<td>28</td>
25+
<td>Male</td>
26+
<td><span>Graphic Designer</span></td>
27+
</tr>
28+
<tr>
29+
<td><span>William</span><br/></td>
30+
<td>35</td>
31+
<td>Male</td>
32+
<td>Teacher</td>
33+
</tr>
34+
</tbody>
35+
</table>
36+
</div>).ToolbarSettings(e => { e.Items((object)ViewBag.items); }).Render()
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<ejs-richtexteditor id="table">
2+
<e-richtexteditor-toolbarsettings items="@ViewBag.items"></e-richtexteditor-toolbarsettings>
3+
<e-richtexteditor-quicktoolbarsettings table="@ViewBag.table"></e-richtexteditor-quicktoolbarsettings>
4+
<e-content-template>
5+
<h2>Discover the Table's Powerful Features</h2><p>A table can be created in the editor using either a keyboard shortcut or the toolbar. With the quick
6+
toolbar, you can
7+
perform table cell insert, delete, split, and merge operations. You can style the table cells using
8+
background
9+
colours and borders.</p><table class="e-rte-table" style="width: 100%; min-width: 0px; height: 151px">
10+
<thead>
11+
<tr>
12+
<th><span>Name</span><br/></th>
13+
<th><span>Age</span><br/></th>
14+
<th><span>Gender</span><br/></th>
15+
<th><span>Occupation</span><br/></th>
16+
</tr>
17+
</thead>
18+
<tbody>
19+
<tr>
20+
<td>Selma Rose</td>
21+
<td>30</td>
22+
<td>Female</td>
23+
<td><span>Engineer</span><br/></td>
24+
</tr>
25+
<tr>
26+
<td><span>Robert</span><br/></td>
27+
<td>28</td>
28+
<td>Male</td>
29+
<td><span>Graphic Designer</span></td>
30+
</tr>
31+
<tr>
32+
<td><span>William</span><br/></td>
33+
<td>35</td>
34+
<td>Male</td>
35+
<td>Teacher</td>
36+
</tr>
37+
</tbody>
38+
</table>
39+
</e-content-template>
40+
</ejs-richtexteditor>

ej2-asp-core-mvc/code-snippet/tree-grid/data-binding-core/ajax-data/tagHelper

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<script>
1515
document.getElementById("updateTree").addEventListener("click", function (e) {
1616
var treegrid = document.getElementById('TreeGrid').ej2_instances[0];
17-
var fetch = new ej.base.Fetch('https://ej2services.syncfusion.com/production/web-services/api/SelfReferenceData', 'GET');
17+
var fetch = new ej.base.Fetch('https://services.syncfusion.com/aspnet/production/api/SelfReferenceData', 'GET');
1818
treegrid.showSpinner();
1919
fetch.send();
2020
fetch.onSuccess = function (data) {

ej2-asp-core-mvc/code-snippet/tree-grid/data-binding-core/custom-adaptor/tagHelper

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
}
2727
var treegrid = document.querySelector('#TreeGrid').ej2_instances[0];
2828
treegrid.dataSource = new ej.data.DataManager({
29-
url: "https://ej2services.syncfusion.com/production/web-services/api/SelfReferenceData",
29+
url: "https://services.syncfusion.com/aspnet/production/api/SelfReferenceData",
3030
adaptor: new SerialNoAdaptor()
3131
});
3232
}

ej2-asp-core-mvc/code-snippet/tree-grid/data-binding-core/loading-animation/tagHelper

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<ejs-treegrid id="TreeGrid" idMapping="TaskID" height="400" parentIdMapping="ParentItem" hasChildMapping="isParent" treeColumnIndex="1" allowPaging="true" allowSorting="true">
22
<e-treegrid-pagesettings pageCount="3"></e-treegrid-pagesettings>
33
<e-treegrid-loadingIndicator indicatorType="Shimmer"></e-treegrid-loadingIndicator>
4-
<e-data-manager url="https://ej2services.syncfusion.com/production/web-services/api/SelfReferenceData" adaptor="WebApiAdaptor" crossDomain="true"></e-data-manager>
4+
<e-data-manager url="https://services.syncfusion.com/aspnet/production/api/SelfReferenceData" adaptor="WebApiAdaptor" crossDomain="true"></e-data-manager>
55
<e-treegrid-columns>
66
<e-treegrid-column field="TaskID" headerText="Task ID" textAlign="Right" width="120"></e-treegrid-column>
77
<e-treegrid-column field="TaskName" headerText="Task Name" width="240" textAlign="Left"></e-treegrid-column>

ej2-asp-core-mvc/code-snippet/tree-grid/data-binding-core/offline-data/tagHelper

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<ejs-treegrid id="TreeGrid" idMapping="TaskID" height="260" parentIdMapping="ParentItem" treeColumnIndex="1">
2-
<e-data-manager url="https://ej2services.syncfusion.com/production/web-services/api/SelfReferenceData" adaptor="WebApiAdaptor" offline="true" crossDomain="true"></e-data-manager>
2+
<e-data-manager url="https://services.syncfusion.com/aspnet/production/api/SelfReferenceData" adaptor="WebApiAdaptor" offline="true" crossDomain="true"></e-data-manager>
33
<e-treegrid-columns>
44
<e-treegrid-column field="TaskID" headerText="Task ID" textAlign="Right" width="90"></e-treegrid-column>
55
<e-treegrid-column field="TaskName" headerText="Task Name" width="180"></e-treegrid-column>

ej2-asp-core-mvc/code-snippet/tree-grid/data-binding-core/remote-data/tagHelper

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<ejs-treegrid id="TreeGrid" idMapping="TaskID" height="260" parentIdMapping="ParentItem" hasChildMapping="isParent" treeColumnIndex="1">
2-
<e-data-manager url="https://ej2services.syncfusion.com/production/web-services/api/SelfReferenceData" adaptor="WebApiAdaptor" crossDomain="true"></e-data-manager>
2+
<e-data-manager url="https://services.syncfusion.com/aspnet/production/api/SelfReferenceData" adaptor="WebApiAdaptor" crossDomain="true"></e-data-manager>
33
<e-treegrid-columns>
44
<e-treegrid-column field="TaskID" headerText="Task ID" textAlign="Right" width="90"></e-treegrid-column>
55
<e-treegrid-column field="TaskName" headerText="Task Name" width="180"></e-treegrid-column>

0 commit comments

Comments
 (0)