Change icon on click jstree

橙三吉。 提交于 2019-12-08 19:53:21

问题


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.


回答1:


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).




回答2:


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>



回答3:


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


来源:https://stackoverflow.com/questions/30409399/change-icon-on-click-jstree

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!