-
Notifications
You must be signed in to change notification settings - Fork 412
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Responsive tables #29
Comments
Hi Martin! var clusterize;
function initClusterize() {
clusterize = new Clusterize({
rows: data,
scrollId: 'scrollArea',
contentId: 'contentArea'
});
}
var resize_debouncer = 0;
$(window).on('resize', function() {
clearTimeout(resize_debouncer);
resize_debouncer = setTimeout(function() {
clusterize && clusterize.destroy(true);
initClusterize();
}, 100);
});
initClusterize(); This will force clusterize to adapt to new rows height. |
Cool, it works. Thanks |
Hello guys, please update to last version of clusterize and check how it works for you after window resize. You need to remove workaround that I gave you earlier, default init should be enough now. var clusterize = new Clusterize({
rows: data,
scrollId: 'scrollArea',
contentId: 'contentArea'
}); |
Thanks. It works like a charm :) |
👍 👍 |
@s-a @martinpesout |
Hi, I'm having the same problem but it didn't solve it with the latest version. I have a table with 100 rows, and when I resize the scrollId div it doesn't redraw all the rows again. Someone would have an example online. Detail that I apply the plugin to an existing table with 100 lines and 30 visible lines. When I increase the height by resize it doesn't display the other lines |
Hi, how can I re-init whole table after resizing of the window. Scrolling seems to be broken after resizing whole table because height of the cells is different.
Thanks
The text was updated successfully, but these errors were encountered: