Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.