Hi jQWidgets Team,
I have built the Tree structure using jqxTreeGrid. This was the recommendation as jqxTree wasn’t efficient with huge data.
Now, the tree looks good.
In order to take up for Element IDs, jqxTree was providing meaningful id, but NOT jqxTreeGrid.
currently it shows as below, myTree was the div id.
[@id=’row7myTree’]/td/span[3]
Assume my data structure is as follows :
1) json data:
{
id: ‘fruits’,
lable : ‘Fruits’,
items : [ ]
}
So, for sure, the data (especially ID attribute) in each level is unique. So i would like to have the ‘span’ or ‘td’ or ‘a’ of the data filed should have the ‘ID’ field of my json input given to jqxTreeGrid.
Is there any possibility to achieve it ?
2) Tree Structure.
-All
——-Fruits
————-Peal
——————- Orange
——————- Chikku
——————- Pappaya
————-NonPeal
——————- Apple
——————- Guava
——-Vegetables
————- Roots
——————- Potato
——————- Beet Root
————- Leafy
——————- Mint
——————- Palak
Regards,
Rao.