We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7607f41 + 85074b3 commit a4494a3Copy full SHA for a4494a3
src/main/webapp/js/table.js
@@ -81,11 +81,12 @@ jQuery3(document).ready(function () {
81
*/
82
function loadTableData(table, dataTable) {
83
if (!table[0].hasAttribute('isLoaded')) {
84
- table.attr('isLoaded', 'true');
+ table.attr('isLoaded', 'false');
85
tableDataProxy.getTableRows(table.attr('id'), function (t) {
86
(function () {
87
const model = JSON.parse(t.responseObject());
88
dataTable.rows.add(model).draw();
89
+ table.attr('isLoaded', 'true');
90
})();
91
});
92
}
0 commit comments