views:

7

answers:

1

Hi,

I am using dhtmlx to populate mysql data in treeview in php. Everything was fine, except, when I use getAllChecked() to get all the items checked as array, it shows identificators instead of text of the nodes. Is anyone of you have used dhtmlx, can you please help me out in getting the text of node instead of id please?

A: 

You can use

 var text = tree.getItemText(id);
Aquatic