Hi Remi,
To utilize our all components with all features in ASP.NET Core platform, the best way is choosing the Tag Helper support.
Query: Some components are not completely finished for tag helpers, the grid( filtering, drag & drop etc.)
We have completed the Tag Helper for all the properties in Grid control and we can enable the filtering and drag and drop by using below Tag Helper.
[Drag and Drop]
<ej-grid id="FlatGrid" allow-paging="true" row-drop-settings="@(new RowDropSettings() {DropMapper="Home/RowDropHandler",DropTargetID="#DestGrid" })" allow-row-drag-and-drop="true">
<e-datamanager json="ViewBag.dataSource" adaptor="remoteSaveAdaptor"></e-datamanager>
. . .
</ej-grid>
[Controller]
public ActionResult RowDropHandler(List<Orders> added, List<Orders> deleted)
{
//TO do here when droping
return Json(added);
}
[Filtering]
<ej-grid id="FlatGrid" allow-paging="true" allow-filtering="true">
<e-filter-settings filter-type="Menu"></e-filter-settings>
. . .
</ej-grid>
|
Also, we have created a sample that can be downloaded from the below link.
Please let us know if you need any further assistance.
Regards,
Manikandan Mariappan