Hello
I am using ASP.NET CORE EJ 2 version 16.1.0.37 (nuget package).
I am having a bit of trouble implementing the remote data for the Treeview when using the UrlAdaptor.
Let's assume I would like to display a Treeview that has 3 levels and shows the years, months and days of a year.
On the initial load the Treeview should display only the years.
When expanding a year, the months for this year should be loaded (if there are any).
When expanding a month, the days for this month should be loaded (if there are any).
So this means once the Treeview is initially loaded it displays a list of years.
However, the Treeview does not know if the parent has children or not. When clicking the expand button of the parent, a request needs to be sent to the server to query for possible children.
When I try to do something like this, the parents do not have an expand button and thus no query for the children can be made.
Could you please provide an example of a Treeview that uses remote data with the UrlAdaptor, has 3 levels (years, months, days) and the children/subchildren are only loaded when expanding the parent (if there are any children at all)?
Kind regards
Phil