Reputation: 171
I am totally new to Angular and there is a requirement wherein we need to display the data in an Angular Grid which is multilevel/Heirarchical.
The data is coming from the SQL Database. It is basically a query where in we pass the arguments in where clause and get the data back.
My Questions are:
Note : This needs to be done in Angular 8 or above version.
Upvotes: 0
Views: 234
Reputation: 2322
Your question covers a broad range of topics and therefore my answer is in a very high level.
div
, or by utilizing Angular material components like table
, which supports expand/collapse functionality. It also depends on the level of hierarchy (nesting) you have. Lastly there are 3rd party libraries such as PrimeNG that provide even more components.Upvotes: 0