How to hide All rows except current (clicked Row) using jQuery?
I want to hide all rows when i click the particular row except current one row.
<table>
@foreach (var item in Model)
{
idValue++;
<tr class="tableRow" id="@idValue">
<td class="master" id="@item.Batch_Seq">
<a href= "#" >@(item.Batch_Name)></a>
</td>
<td>
@(item.Present)
</td>
<td>
@(item.Absent)
</td>
<td>
@(item.HalfDay)
</td>
<td>
@(item.Batch_count)
</td>
</tr>
}
</table>
I tried like this
$('.tableRow').hide();
$(this).closest('tr:not(.tableRow)').hide();
Could anyone help me?
How to hide All rows except current (clicked Row) using jQuery?
I want to hide all rows when i click the particular row except current one row.
<table>
@foreach (var item in Model)
{
idValue++;
<tr class="tableRow" id="@idValue">
<td class="master" id="@item.Batch_Seq">
<a href= "#" >@(item.Batch_Name)></a>
</td>
<td>
@(item.Present)
</td>
<td>
@(item.Absent)
</td>
<td>
@(item.HalfDay)
</td>
<td>
@(item.Batch_count)
</td>
</tr>
}
</table>
I tried like this
$('.tableRow').hide();
$(this).closest('tr:not(.tableRow)').hide();
Could anyone help me?
Share edited Feb 3, 2016 at 17:27 marc_s 756k184 gold badges1.4k silver badges1.5k bronze badges asked Jun 18, 2013 at 7:36 Kanagaraj VadivelKanagaraj Vadivel 4732 gold badges7 silver badges14 bronze badges 03 Answers
Reset to default 7You seem to want this :
$('.tableRow').click(function(){
$('.tableRow').hide(); // hide all rows
$(this).show(); // show the clicked one
});
Note that the user can't notice the row was hidden then shown : the screen isn't repaint until the event handler ends.
Use .not() to select all elements with class tableRow
except for the one that was clicked(this
)
$('tr.tableRow').click(function() {
$('tr.tableRow').not(this).hide();
});
You can use not() to hide everything that isn't "this":
$('table tr.tableRow').click(function(){
$('table tr').not(this).hide(); // hide everything that isn't "this"
});
or you can use .siblings() to hide the siblings of the clicked row
$('table tr').click(function(){
$(this).siblings().hide(); // hide the siblings of the clicked row
});
Working example : http://jsfiddle/ouadie/U7eUR/