This example demonstrates how to load data on demand every time a user expands a TreeList node. For this purpose, filtering is delegated to the server, and IDs of expanded nodes are sent to the server with every request for data.
using Microsoft.AspNetCore.Mvc;
using DevExtreme.NETCore.Demos.Models.SampleData;
namespace DevExtreme.NETCore.Demos.Controllers {
public class TreeListController : Controller {
public ActionResult LoadDataOnDemand() {
return View();
}
}
}
using System;
using System.Linq;
using System.Net.Http;
using System.IO;
using Microsoft.AspNetCore.Hosting.Internal;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Hosting;
namespace DevExtreme.NETCore.Demos.Controllers.ApiControllers {
[Route("api/[controller]")]
public class TreeListDataController : Controller {
IHostingEnvironment _hostingEnvironment;
public TreeListDataController(IHostingEnvironment hostingEnvironment) {
_hostingEnvironment = hostingEnvironment;
}
[HttpGet]
public object Get(string parentIds) {
var parents = string.IsNullOrEmpty(parentIds) ? new[] { "" } : parentIds.Split(',');
var rootPath = _hostingEnvironment.ContentRootPath;
var childNodes = parents.SelectMany(parentId => {
var parentPath = String.IsNullOrEmpty(parentId) ? rootPath : Path.Combine(rootPath, parentId);
return Directory.EnumerateFileSystemEntries(parentPath);
})
.Where(path => Path.GetFullPath(path).StartsWith(rootPath))
.Select(path => {
var fileInfo = new FileInfo(path);
var isDirectory = System.IO.File.GetAttributes(path).HasFlag(FileAttributes.Directory);
var parentId = Path.GetDirectoryName(path.Substring(rootPath.Length + 1));
return new {
id = Path.Combine(parentId, Path.GetFileName(path)),
parentId,
name = Path.GetFileName(path),
modifiedDate = fileInfo.LastWriteTime,
createdDate = fileInfo.CreationTime,
size = isDirectory ? (long?)null : fileInfo.Length,
isDirectory,
hasItems = isDirectory && Directory.EnumerateFileSystemEntries(path).Count() > 0
};
})
.Where(i => i.name != "bin" && i.name != "obj" && i.name != "packages" && i.name.Length > 0 && !i.name.StartsWith("."))
.OrderByDescending(i => i.isDirectory)
.ThenBy(i => i.name);
return childNodes;
}
}
}