xxxxxxxxxx
1
2
3
Datatable: scroll over button - it should show tooltip, but doesn't
4
<table class="datatable"><thead><tr><th class="th-sm">Test tootip in datatable</th></tr></thead>
5
<tbody>
6
<tr>
7
<td>
8
<button type="button"
9
class="btn btn-small btn-light"
10
data-mdb-toggle="tooltip"
11
title="Tooltip example - does not display"
12
>
13
<span class="fas fa-pen"></span>
14
</button>
15
</td>
16
</tr>
17
</tbody>
18
</table>
19
<br>
20
<br>
21
Normal table: scroll over button - it should show tooltip, and does
22
23
<table><thead><tr><th class="th-sm">Test tootip in normal table</th></tr></thead>
24
<tbody>
25
<tr>
26
<td>
27
<button type="button"
28
class="btn btn-small btn-light"
29
data-mdb-toggle="tooltip"
30
title="Tooltip example - displays correctly"
31
>
32
<span class="fas fa-pen"></span>
33
</button>
34
</td>
35
</tr>
36
</tbody>
37
</table>
1
1
1
1
Console errors: 0