Hi, i’m new, and i’m here to post my question.
I want to change one tree icon, i’ve followed the instructions, but no way, attach here the code, the id “inviate” exists and also the fontawesome is included well.
Where is my mistake?
Thanks a lot.
var tree = new dhx.Tree(null, {isFolder: function(oggetto) {
var id = oggetto.id;
if(id.substr(0, 8)==“cartella” ) {
return true;
}else{
return false;
}
}});
tree.data.load("treefolder/tree.php");
tree.data.update("inviate", {icon:"fab fa-accessible-icon"});