hi
i want to use treegrid component in my new project
but i can't find treegrid control or how to develop it myself
sample data :
let data: Object[] = [
{
'MotherID': 0,
'ID': 10252,
'UserName': 'Christina Berglund',
'Name': 'Suprêmes délices',
'CountryName': 'Belgium',
},
{
'MotherID': 10252,
'ID': 102521,
'UserName': 'Christina Berglund1',
'Name': 'Suprêmes délices1',
'CountryName': 'Belgium1',
},
{
'MotherID': 10252,
'ID': 102524,
'UserName': 'Christina Berglund4',
'Name': 'Suprêmes délices4',
'CountryName': 'Belgium4',
},
{
'MotherID': 10252,
'ID': 102522,
'UserName': 'Christina Berglund2',
'Name': 'Suprêmes délices2',
'CountryName': 'Belgium2',
},
{
'MotherID': 10252,
'ID': 102523,
'UserName': 'Christina Berglund3',
'Name': 'Suprêmes délices3',
'CountryName': 'Belgium3',
},
{
'MotherID': 0,
'ID': 10253,
'UserName': 'Hanna Moos',
'Name': 'Hanari Carnes',
'CountryName': 'Brazil'
},
{
'MotherID': 0,
'ID': 10254,
'UserName': 'Frédérique Citeaux',
'Name': 'Chop-suey Chinese',
'CountryName': 'Switzerland'
},
{
'MotherID': 10254,
'ID': 102541,
'UserName': 'Frédérique Citeaux1',
'Name': 'Chop-suey Chinese1',
'CountryName': 'Switzerland1'
},
{
'MotherID': 10254,
'ID': 102542,
'UserName': 'Frédérique Citeaux2',
'Name': 'Chop-suey Chinese2',
'CountryName': 'Switzerland2'
},
];
thanks