Is there a list of attributes that I can retrieve from the item…
As far as I know I can get
-> label
-> id
-> level
As in the following example:
var item = $(‘#jqxTree’).jqxTree(‘getItem’, args.element);
var label = item.label;
var level = item.level;
var myItemId = item.id;
Is it possible to get the value attribute? I tried -val- OR -value- and it doesn’t work…
Thank you,
Andreas