I am using Twitter Bootstrap table with clickable rows that are highlighted when hovered over (I can get rid of the hover feature if it makes this easier). I want the selected row to remain highlighted until another row is clicked or it is reclicked.
$( document ).ready(function() {
$('#myTable').on('click', 'tbody tr', function(event) {
// console.log("test ");
});
and the table
<table class="table table-bordered table-hover" id="myTable">
<tbody>
<tr>
<tr class='clickable-row'>
I tried this code in the JS but didn’t work
$(this).addClass('highlight').siblings().removeClass('highlight');
4
Answers
You are quite close. Targeting the
.clickable-row
class on your$("#myTable").on(...)
event and using Bootstrap’s.active
class should work for you:HTML:
Javascript:
And a Bootply Example
Note: If you left
.table-hover
on your table, you’d have to use a different class than.active
, such as.bg-info
(which would be a blue hightlight)To remove a highlight from the row (ie click again), check if the row has the class and remove it:
See @BravoZulu’s answer for original information.
Try:
i have used this script on bootstrap-table.
To show the painted row of a color, indicating that it is selected, you can use
data-row-style = 'formatterRowUtSelect'
Inside your code, you can add this method:
Do not forget to create the css for the selected row:
I hope it serves you, Greetings.