Hi Telerik team,
Currently I am having the parent - child data in the same table in the below format.
My Data...
Id | ParentId |score
2 | 1 | 56
3 | 1 | 98
4 | 2 | 75
5 | 2 | 75
6 | 2 | 99
7 | 5 | 73
Now I want to build the hierarchy grid using that single table. without defining separate detail table for each level
Note that the level is not limited. it can be extended to many level.
I want the grid to be like below
id | score
>1 | 100
>2 | 56
>4 | 75
>5 | 75
>7 | 73
>6 | 99
>3 | 98
Please help how to do this
Thanks
Alex