如何将默认图标设置为图像并在jstree中删除文件夹图标?

时间:2015-12-16 12:02:32

标签: jstree

目前在jstree中,默认图标是文件夹图标。如何在jstree中将新图标设置为默认图标?

1 个答案:

答案 0 :(得分:0)

将类型插件添加到jstree,并在类型中设置默认属性中的默认图标:

"plugins": ["types"]
"types": {
    "default: {
        "icon": //new default icon here
    }
}
相关问题