Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change icon on click jstree

I have this code using jstree plugin.

$(".gems-tree").on('changed.jstree' , function( event , data ){
  console.log("folder clicked");
});

And it works, but now i want to change the icon from the folder to close to open, is there a way to achive this?

NOTE

Already try with data.node.state.opened = true just to see if the folder icon change but not.

like image 476
carloss medranoo Avatar asked May 23 '15 05:05

carloss medranoo


2 Answers

If you need to change the icon of each selected node, the answer by Adnan Y will work (just make sure data.action is "select_node"):

$("#jstree2").on('changed.jstree', function(evt, data) {
  if(data.action === "select_node") {
    data.instance.set_icon(data.node, 'http://jstree.com/tree-icon.png');
  }
});

If you need to react on nodes opening and closing, use similar code:

$("#jstree2")
  .on('open_node.jstree', function(evt, data) {
    data.instance.set_icon(data.node, 'http://jstree.com/tree-icon.png');
  })
  .on('close_node.jstree', function(evt, data) {
    data.instance.set_icon(data.node, true);
  });

In the second example the icon is set to true - this will restore it to the default icon (if this is what you need).

like image 191
vakata Avatar answered Sep 23 '22 02:09

vakata


This can be done using jstree's types plugin.

Here's an example, using font-awesome for the folder icons.

<div id="jstree_menu"></div>
<script>
/* Load menu tree data */
$('#jstree_menu').jstree(
    {
        'core' : {
            'data' : {
                'url' : '/jstree-menu-data/index.html',
            }
        },
        'plugins' : [ "types" ],
        'types' : {
            'default' : {
                'icon' : 'fa fa-angle-right fa-fw'
            },
            'f-open' : {
                'icon' : 'fa fa-folder-open fa-fw'
            },
            'f-closed' : {
                'icon' : 'fa fa-folder fa-fw'
            }
        }
    }
);

/* Toggle between folder open and folder closed */
$("#jstree_menu").on('open_node.jstree', function (event, data) {
    data.instance.set_type(data.node,'f-open');
});
$("#jstree_menu").on('close_node.jstree', function (event, data) {
    data.instance.set_type(data.node,'f-closed');
});
</script>
like image 35
Li-aung Yip Avatar answered Sep 23 '22 02:09

Li-aung Yip