Is it possible to set fancyTree height when using ext column view

I have been using the fancytree plugin for a while, and I managed to deal with most of the problems that I encountered, however I am a bit stuck ...

I just started using an extension with a column extension and wondered if there was a way to set the height of the table and be able to scroll it at that fixed height. I return to 100 results and have to fit the table to a specific area of ​​the page.

I tried to surround the table using the climb div, but that just cuts off the table, and also tried to limit the size of the body, but to no avail.

To implement the column view, I used this example - http://wwwendt.de/tech/fancytree/demo/sample-ext-columnview.html

Any suggestions would be welcome.

Thank you, Chris

+5
source share
1 answer

After some googling, I found an example where some CSS resolved a problem that I, too:

ul.fancytree-container { height: 300px; width: 100%; } 

Full example: https://github.com/mar10/fancytree/blob/master/demo/nav.html

+7
source

Source: https://habr.com/ru/post/1201627/


All Articles