remove folder icon in jstree while using checkbox -


how 1 remove folder icon in jstree whilst using checkbox plugin?

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

this works fine displays checkbox icon folder icon.

in latest jstree version i.e. jstree-3, themes option goes "core" object

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

Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -