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 3bc6425 + 19e4db4 commit 876e5d0Copy full SHA for 876e5d0
src/main/webapp/js/table.js
@@ -75,10 +75,6 @@ jQuery3(document).ready(function () {
75
(function () {
76
const model = JSON.parse(t.responseObject());
77
dataTable.rows.add(model).draw();
78
- jQuery3('[data-bs-toggle="tooltip"]').each(function () {
79
- const tooltip = new bootstrap5.Tooltip(jQuery3(this)[0]);
80
- tooltip.enable();
81
- });
82
})();
83
});
84
}
@@ -114,6 +110,13 @@ jQuery3(document).ready(function () {
114
110
115
111
116
112
113
+ table.on('draw.dt', function () {
+ table.find('[data-bs-toggle="tooltip"]').each(function () {
+ const tooltip = new bootstrap5.Tooltip(jQuery3(this)[0]);
+ tooltip.enable();
117
+ });
118
119
+
120
if (table.is(":visible")) {
121
loadTableData(table, dataTable);
122
0 commit comments