Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

When I apply search on the table, I'm trying to hide all the shown children of the table row. But I'm unable to do so. Here is my code. Don't know what's wrong.

var table = $("#tblTemplateList").DataTable();
$("#tblTemplateList tr").each(function(index,tr){
  if($(tr).child.isShown()){
    $(tr).child.hide();
  }
});

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
839 views
Welcome To Ask or Share your Answers For Others

1 Answer

this small example

function hiderows() {
  $("#tblTemplateList tr").each(function(index, tr) {
    if ($(tr).is(":visible")) {
      $(tr).hide();
    } else {
      $(tr).show();
    }
  });
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<table id="tblTemplateList">
<tr><td>row1</td></tr>
<tr><td>row2</td></tr>
</table>

<button type="button" onclick="hiderows()">
Hide/Show Rows
</button>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...