NeXTs / Clusterize.js

Tiny vanilla JS plugin to display large data sets easily

Home Page:https://clusterize.js.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ADD ability to disable max-height restriction (to use browsers page scrollbar to scroll through content)

allanlaal opened this issue · comments

I would like to use the main document body to scroll through the dataset that Clusterize.js optimizes, not have a limited height area where the rows are shown

I tried:

.clusterize-scroll {
	overflow: visible;
}

and

.clusterize-scroll {
	max-height: none;
	max-width: none;
}

..but Clusterize only shows the first 200 rows then :(

I also tried using 99999px instead of none, but it had the same effect

commented

This PR might be interesting for you.

Thanks!

seems my ticket is duplicate of #106, closing