I'm having the same issue as #111, only with ul's and I've doublechecked everything 4 times and tested with every Clusterize version and still it only displays 200 (rows_in_block * blocks_in_cluster) rows and nothing more. although getRowsAmount() has the correct number of rows (~6700)
todo_dashboard_list_clusterize_instance = new Clusterize({
rows: [], // filled by load_todo_dashboard_list_get via Clusterize.append()
scrollId: 'dashboard_list_container',
contentId: 'dashboard_list',
tag: 'li',
rows_in_block: 50, // max amount of Todo rows on a normal screen
blocks_in_cluster: 4,
show_no_data_row: true,
no_data_text: dashboard_list_load_pageholder,
no_data_class: 'dashboard_list_loading_indicator',
keep_parity: false,
callbacks: {
clusterChanged: function() {
calc_todo_totals();
}
}
});
rows are appended using:
$.post(...)
.done(function(result) {
var append_arr = compose_dashboard_list_append_array(result);
// converts array of todos into an array of todo row html snippets:
[
"<li id="todo_row_1">...</li>",
"<li id="todo_row_2">...</li>",
"<li id="todo_row_3">...</li>",
"<li id="todo_row_4">...</li>",
...
"<li id="todo_row_N">...</li>"
]
todo_dashboard_list_clusterize_instance.append(append_arr);
all of that works, every append triggers a clusterChanged
the todo row itself is ~1000 lines of html with various inputs and lots and lots of children (none of them are ul or li though)
I'm having the same issue as #111, only with ul's and I've doublechecked everything 4 times and tested with every Clusterize version and still it only displays 200 (rows_in_block * blocks_in_cluster) rows and nothing more. although getRowsAmount() has the correct number of rows (~6700)
and the js side:
rows are appended using:
all of that works, every append triggers a clusterChanged
the todo row itself is ~1000 lines of html with various inputs and lots and lots of children (none of them are
ul
orli
though)