DJANGO: Treeview expands but not collapse


Topic: DJANGO: Treeview expands but not collapse

MatijaTerzic pro premium priority asked a year ago

In my Django template i load the follwoing

in <head> section:

<link href="{% static 'mdb5/css/mdb.min.css' %}" rel="stylesheet" />
<link href="{% static 'mdb5/plugins/css/all.min.css' %}" rel="stylesheet" />

And just before </body>:

<script src="{% static 'mdb5/js/mdb.min.js' %}"></script>
<script src="{% static 'mdb5/plugins/js/all.min.js' %}" type="text/javascript"></script>

Now i made a test treeview with the following code:

 <div class="treeview" data-mdb-line="false" data-mdb-open-on-click="true">
          <ul>
                <li>
                <a>Test1</a>
                <ul>
                        <li>Test1-1</li>
                </ul>
                </li>
                <li>
                <a>Test2</a>
                <ul>
                        <li>Test2-1</li>
                </ul>
                </li>
                <li>
                <a>Test3</a>
                <ul>
                        <li>Test3-1</li>
                </ul>
                </li>

          </ul>
        </div>

I got this:

enter image description here

When i click on Test1 it expands:

enter image description here

As you can see the arrow is also not changing and i cannot collapse it again....


MatijaTerzic pro premium priority answered a year ago

After some testing i found the following weird thing.

When i have this:

enter image description here

And when i click on "Three" the "Second-three" will collapse:

enter image description here


kpienkowska staff commented a year ago

Because it should collapse Three and all children subtrees. For some reason in your case, it does not close Three itself. I can't recreate this bug. I've prepared a Django project to test this out yet it works as it should for me.


MatijaTerzic pro premium priority commented a year ago

Did some more testing. I also had the mdb5-advanced-standard/js/modules/sidenav.min.js loaded and that caused the issue.

When i comment this out the treeview works as expected


kpienkowska staff commented a year ago

That's great I'm glad that you found the solution.


MatijaTerzic pro premium priority commented a year ago

Yeah ok, but i am using de sidenav bar.... so i think i need that js file....


kpienkowska staff commented a year ago

But you don't need to import sidenav separately. It is included in mdb5/js/mdb.min.js


MatijaTerzic pro premium priority commented a year ago

So i am correct saying that:

  • All modules are in mdb.min.js
  • Plugins need seperate .js

?


kpienkowska staff commented a year ago

Yes, you are correct.


MatijaTerzic pro premium priority commented a year ago

Ok thank you, maybe would be a good idea to put that in the docs...


kpienkowska staff commented a year ago

It is in the docs: https://mdbootstrap.com/docs/standard/getting-started/optimization/#section-modules

Also, we do add default imports in the HTML file that is included in the package.


MatijaTerzic pro premium priority commented a year ago

Ok sorry my bad.

But thanks for the help !


kpienkowska staff answered a year ago

For plugins to work properly, you need to import at least JS for plugins individually.

So you can keep CSS imports and change JS with this:

<script src="{% static 'mdb5/js/mdb.min.js' %}"></script>
<script src="{% static 'mdb5/plugins/js/treeview.min.js' %}" type="text/javascript"></script>

MatijaTerzic pro premium priority commented a year ago

Hello,

I have tried this but the issue remains, i can expand "Test1" but not collapse it back...


kpienkowska staff commented a year ago

Do you have any console errors?


MatijaTerzic pro premium priority commented a year ago

No, i have no console errors


MatijaTerzic pro premium priority answered a year ago

What i do see in de "Developer Tools" of the browser is this error

Certain ARIA roles must contain particular children: Required ARIA children role not present: group, treeitem

<ul role="tree">

MatijaTerzic pro premium priority answered a year ago

I also test the Javascript and i got exactly the same..


kpienkowska staff commented a year ago

What do you mean by I also test the Javascript and i got exactly the same..?


MatijaTerzic pro premium priority commented a year ago

In my template i have this:

div id="sample-tree

And Javascript:

"const jsTreeview = document.getElementById('sample-tree');

const jsInstance = new Treeview(jsTreeview, { structure: [ {name: 'One'}, {name: 'Two'}, {name: 'Three', children: [ {name: 'Second-one'}, {name: 'Second-two'}, {name: 'Second-three', children: [ {name: 'Third-one', children: [ {name: 'Fourth-one'}, {name: 'Fourth-two'}, {name: 'Fourth-three'} ]}, {name: 'Third-two'}, {name: 'Third-three', children: [ {name: 'Fourth-one'}, {name: 'Fourth-two'}, {name: 'Fourth-three'} ]} ]} ]} ],});"


Please insert min. 20 characters.

FREE CONSULTATION

Hire our experts to build a dedicated project. We'll analyze your business requirements, for free.

Status

Resolved

Specification of the issue
  • User: Pro
  • Premium support: Yes
  • Technology: MDB Standard
  • MDB Version: MDB5 6.2.0
  • Device: PC
  • Browser: Edge
  • OS: Windows 11
  • Provided sample code: No
  • Provided link: No