The examples in this page are using the following grid data. The table can be altered to read different data structures.


var entries = [
  {name: 'John Smith', email: 'jsmith@foo.com'},
  {name: 'John Doe', email: 'jdoe@foo.com'},
  {name: 'Clark Kent', email: 'ckent@foo.com'},
  {name: 'Abe Lincoln', email: 'abe@foo.com'}
];
var columns = [
  {key: 'name', label: 'Name'},
  {key: 'email', label: 'Email'}
];