Answers for "bootstrap table th warp text"

2

bootstrap table row span

<td colspan="2">Content here</td> // or...
<td rowspan="2">Content here</td>
Posted by: Guest on July-03-2020
0

bootstrap table striped hidden rows

// For Bootstrap 4
$("tr:visible").each(function (index) {
    $(this).css("background-color", !!(index & 1)? "rgba(0,0,0,.05)" : "rgba(0,0,0,0)");
});

// For previous versions
$("tr:not(.hidden)").each(function (index) {
    $(this).toggleClass("stripe", !!(index & 1));
});
Posted by: Guest on July-02-2020

Browse Popular Code Answers by Language