Thread ID: |
Created: |
Updated: |
Platform: |
Replies: |
146430 | Aug 2,2019 10:01 PM UTC | Aug 8,2019 05:28 AM UTC | ASP.NET Core - EJ 2 | 8 |
![]() |
Tags: DataGrid |
@{
var ChildGrid = new Syncfusion.EJ2.Grids.Grid()
{
DataSource = new Syncfusion.EJ2.DataManager() { Url = "UrlChildDataSource", BatchUrl = "batchUpdate", Adaptor = "UrlAdaptor" },
QueryString = "EmployeeID",
. . .
};
}
<div class="control-section">
<ejs-grid id="HierarchyPrint" load="onLoad">
<e-data-manager url="@Url.Action("UrlDatasource")" adaptor="UrlAdaptor"></e-data-manager>
. . .
. . .
</ejs-grid>
</div> |
@{
var ChildGrid = new Syncfusion.EJ2.Grids.Grid()
{
DataSource = new Syncfusion.EJ2.DataManager() { json = "@ViewBag.dataSource", BatchUrl = "batchUpdate", Adaptor = "RemoteSaveAdaptor" },
QueryString = "EmployeeID",
};
}
<div class="control-section">
<ejs-grid id="HierarchyPrint" load="onLoad">
<e-data-manager url="@Url.Action("UrlDatasource")" adaptor="UrlAdaptor"></e-data-manager>
. . .
. . .
</ejs-grid>
</div> |
@{
var ChildGrid = new Syncfusion.EJ2.Grids.Grid()
{
DataSource = new Syncfusion.EJ2.DataManager() {
Url = Url.Action("UrlChildDataSource"),
BatchUrl = Url.Action("batchUpdate"),
Adaptor = "UrlAdaptor"
},
QueryString = "EmployeeID",
. ..
. ..
};
}
<div class="control-section">
<ejs-grid id="HierarchyPrint" childGrid="ChildGrid">
<e-data-manager url="@Url.Action("UrlDatasource")" adaptor="UrlAdaptor"></e-data-manager>
. . .
. . .
</ejs-grid>
</div> |
This post will be permanently deleted. Are you sure you want to continue?
Sorry, An error occured while processing your request. Please try again later.
This page will automatically be redirected to the sign-in page in 10 seconds.