OdinaSpb / jstree

Automatically exported from code.google.com/p/jstree
0 stars 0 forks source link

Jstree tree not opening in Internet Explorer #1016

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Hi People,

I have a problem with jstree and IE... 
When i click the "add user" icon in Chrome or Firefox, a tree view is shown as 
you can see in the pics 
BUT if I open the same page in IE and click on that "add user" icon nothing 
happens :(

Any help would be appreciated 
Thanks :)

Original issue reported on code.google.com by milind.a...@gmail.com on 11 Oct 2013 at 2:57

Attachments:

GoogleCodeExporter commented 9 years ago
Here ist the javascript code:
 <script type="text/javascript" class="source">

        $(function () {
            //initialize jstree
                $("#tree").jstree({
                        "core" : {
                                "html_titles" : true
                        },
                        "themes" : {
                                "theme" : "classic",
                                "dots" : true,
                                "icons" : true
                        },
                        "checkbox" : {
                                "real_checkboxes" : true,
                                "real_checkboxes_names" : function(n){
                                                            return [("term_taxonomy_id_" + (n[0].id || Math.ceil(Math.random() * 10000))), 1]; 
                                                          }
                        },
                        "plugins" : [ "themes", "html_data" ]

                });

        });

    </script>

Original comment by milind.a...@gmail.com on 11 Oct 2013 at 3:02