<!DOCTYPE html>
<html>
  <head>
    <script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
    <link href="https://nightly.datatables.net/css/jquery.dataTables.css" rel="stylesheet" type="text/css" />
    <script src="https://nightly.datatables.net/js/jquery.dataTables.js"></script>
    <meta charset=utf-8 />
    <title>DataTables - JS Bin</title>
  </head>
  <body>
    <div class="container">
      <table id="example" class="display nowrap" width="100%">
        <thead>
          <tr>
            <th>Name</th>
            <th>Position</th>
          </tr>
        </thead>
      </table>
    </div>
  </body>
</html>
 
body {
  font: 90%/1.45em "Helvetica Neue", HelveticaNeue, Verdana, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #fff;
}
 
//Some magic happens and I get the following list
var json_result = ['spaghetti', 'poptarts', 'eggs'];
 
//declare the table
var table = $('#example').DataTable({
                  //set two different width columns
                  columnDefs: [
                         { "width": "10%", "targets": 0 },
                         { "width": "90%", "targets": 1 }
                        ]
              });
 
//build the table rows based on result
for (i=0; i<json_result.length; i++){
    var new_row = [json_result[i], json_result[i]];
    table.row.add(new_row);
}
 
table.draw();
// table.columns.adjust().draw(); <-- tried this to no avail
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers