Ask Your Question
2

How can we loop through dynamic columns in Bootstrap tables?

asked 2022-05-17 11:00:00 +0000

pufferfish gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2021-09-03 15:00:00 +0000

plato gravatar image

To loop through dynamic columns in Bootstrap tables, you can use JavaScript to get the table header row and loop through its cells. Here's an example code snippet:

var table = document.getElementById('myTable');
var header = table.rows[0];

for (var i=0; i<header.cells.length; i++) {
  var cell = header.cells[i];
  console.log(cell.innerText);
  // do something with the column header, e.g. filter list of data
}

In this code, we first get a reference to the table element and its header row. We use a for loop to iterate through each cell in the header row and extract the column header text using innerText. You can then use this header text to filter or sort the table data dynamically.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-05-17 11:00:00 +0000

Seen: 9 times

Last updated: Sep 03 '21