Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

display array of objects in a dynamic table javascript [duplicate]

I want to display an array of objects in a dynamic table using javascript.

var rows=[{ name : "John", age:20, email: "[email protected]"},
    { name : "Jack", age:50, email: "[email protected]"},
    { name : "Son", age:45, email: "[email protected]"}
........................etc
   ];

This is how it looks.I want to know how can I show this as a dynamic table.

like image 382
V.V Avatar asked Dec 04 '22 04:12

V.V


1 Answers

This is how you do it:

Javascript Solution:

FIDDLE:

var rows = [{
    name: "John",
    age: 20,
    email: "[email protected]"
}, {
    name: "Jack",
    age: 50,
    email: "[email protected]"
}, {
    name: "Son",
    age: 45,
    email: "[email protected]"
}];

var html = "<table border='1|1'>";
for (var i = 0; i < rows.length; i++) {
    html+="<tr>";
    html+="<td>"+rows[i].name+"</td>";
    html+="<td>"+rows[i].age+"</td>";
    html+="<td>"+rows[i].email+"</td>";
    
    html+="</tr>";

}
html+="</table>";
document.getElementById("box").innerHTML = html;

jQuery Solution:

FIDDLE

var rows = [{
        name: "John",
        age: 20,
        email: "[email protected]"
    }, {
        name: "Jack",
        age: 50,
        email: "[email protected]"
    }, {
        name: "Son",
        age: 45,
        email: "[email protected]"
    }];

$(document).ready(function () {
    var html = "<table border='1|1'>";
    for (var i = 0; i < rows.length; i++) {
        html+="<tr>";
        html+="<td>"+rows[i].name+"</td>";
        html+="<td>"+rows[i].age+"</td>";
        html+="<td>"+rows[i].email+"</td>";
        
        html+="</tr>";

    }
    html+="</table>";
    $("div").html(html);
});

jQuery Solution 2:

FIDDLE

var rows = [{
  name: "John",
  age: 20,
  email: "[email protected]"
}, {
  name: "Jack",
  age: 50,
  email: "[email protected]"
}, {
  name: "Son",
  age: 45,
  email: "[email protected]"
}];

const Array2Table = (arr) => {
  let Table = [];
  let top_row = [];
  let rows = [];

  for (let i = 0; i < arr.length; i++) {
    let cells = [];

    for (let property in arr[i]) {
      if (top_row.length < Object.keys(arr[i]).length) {
        top_row.push(`<th scope="col">${property}</th>`);
      }
      if (arr[i][property] === null) {
        cells.push(`<td>${null}</td>`);
      } else {
        cells.push(`<td>${arr[i][property]}</td>`);
      }
    }

    rows.push(`<tr>${cells.join("")}</tr>`);
  }

  Table.push(`<table class="table card-table table-striped">`);
  Table.push(`<thead>${top_row.join("")}</thead>`);
  Table.push(`<tbody>${rows.join("")}<tbody>`);
  Table.push("</table>");
  return Table.join("");
}

$(function() {
  let html = Array2Table(rows);
  $("div").html(html);
});
like image 195
Prashant Ghimire Avatar answered Dec 09 '22 13:12

Prashant Ghimire