使用复选框时删除jstree中的文件夹图标

时间:2013-05-13 16:26:37

标签: jstree

如何在使用复选框插件时删除jstree中的文件夹图标?

$('#div').jstree({
        "ui": {
            "theme_name": "checkbox"
        },
        "theme" : { "icons": false },
        "json_data": {
            "ajax": {
                "type": "POST",
                "url": "@Url.Action("Tree")"
            }
        },
        "plugins": ["json_data", "checkbox", "ui", "themes"]
    });

这一切都运行正常,但它会显示复选框图标以及文件夹图标。

2 个答案:

答案 0 :(得分:60)

在最新的jstree版本中,即jstree-3,themes选项进入“核心”对象

"core": {
        "themes":{
            "icons":false
        }
    }

答案 1 :(得分:9)

知道了......应该是“主题”:{“icon”:false}