infinite-tree icon indicating copy to clipboard operation
infinite-tree copied to clipboard

A browser-ready tree library that can efficiently display a large amount of data using infinite scrolling.

Results 28 infinite-tree issues
Sort by recently updated
recently updated
newest added

See [issue 72](https://github.com/cheton/infinite-tree/issues/72). Calculating the row heights using `offsetHeight` leads to rounding errors as it returns integer values. Using `getBoundingClientRect()` fixes this.

it seems to be fixed at something like 200px. i would like to have it expand with the size of the page, or at least, double the fixed height.

When you have a large data set, you have to start with all nodes except children of root closed. i.e. use autoOpen(false) However, searching when autoOpen is false is bad...

The root is almost always superfluous, and we always want to start only showing the roots children, with autoOpen as false (to hid the grandchildren until opened).

现在有个需求,需要把树中的某个节点拖动其他区域,想问下该怎么配置呢

I have tried to get the supplied example code to work, but it only produces a plain list of names, there is no indentation or option to open/close nodes. Whats...

Hi, I am facing issue where i have large number of data. it is 5000+. but InfiniteTree is rendering only 1000. when searching then the nodes are there however at...

Currently the distribution builds of Infinite Tree have multiple eval() calls. There are several contexts and situations where using eval() is either prohibited or strongly discouraged. For example; Chrome Extensions,...