This repository demonstrates remote data binding for ASP.NET Core TreeGrid using url adaptor. It showcases fetching data dynamically and enabling loadChildOnDemand for loading children only on demand expanding and collapsing.
Remote data binding using a url adaptor allows the TreeGrid to fetch and display data on demand, reducing memory usage and supporting scalable handling of large datasets.
- Url Adaptor: Connect to URL endpoints and dynamically fetch data from remote sources
- Server-Side child data handling: Appending child data
- .NET 6.0 or higher
- Visual Studio or VS Code
- ASP.NET Core SDK
- C# knowledge
- REST endpoint knowledge
- Clone repository
- Navigate to project directory
- Run
dotnet restore - Execute
dotnet build - Run
dotnet run
Implement remote data binding:
- Create url adaptor returning JSON
- Configure treegrid with url adaptor
- API Endpoint: url adaptor
- Response Format: JSON
- LoadChildOnDemand Parameters: Child data
For detailed information and configuration options: