I am using a simple struts2-jquery tree (v 3.2.0)...
<sjt:tree
id='myTree'
href="%{genericDataUrl}"
/>
... what I noticed is that if I don't define the 'jstreetheme' attribute, the following defaults are defined for the tree (found in in the plugin javascript source code, e.g. struts2-jquery-tree-plugin-3.2.0/template/js/jstree/jquery.jstree.js)...
defaults : {
"opened" : "ui-icon-triangle-1-se",
"closed" : "ui-icon-triangle-1-e",
"item" : "ui-state-default",
"item_h" : "ui-state-hover",
"item_a" : "ui-state-active",
"item_open" : "ui-icon-folder-open",
"item_clsd" : "ui-icon-folder-collapsed",
"item_leaf" : "ui-icon-document"
}
The jquery themes offer many other values for these (for example ui-icon-triangle-1-se could be replaced with ui-icon-plus, etc.). Is there some way I can change those values?
Thanks, Ryan