Skip to content
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

Fixes #847: table duplication on mobile views due to multiple initializations #848

Draft
wants to merge 1 commit into
base: develop
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions apps/table.js
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ function initialize() {

// })


$('#datatables tbody').empty();
Promise.all(Promises)
.then(function(resps) {
// collection list
Expand Down Expand Up @@ -522,7 +522,13 @@ function initialize() {
});
pageIndicatorVisible($('#datatables tbody tr').length);
resetTable();
$('#datatables').stacktable();
// Check if the table is already stacked
if (!$('#datatables').hasClass('stacktable')) {
// Clear any previous stacktable
$('#datatables').nextAll('.stacktable').remove();
// Initialize stacktable on the original table
$('#datatables').stacktable();
}
checkUserPermissions();
});
});
Expand Down