Skip to content

Instantly share code, notes, and snippets.

@csessig86
Created March 11, 2013 23:32
Show Gist options
  • Save csessig86/5138915 to your computer and use it in GitHub Desktop.
Save csessig86/5138915 to your computer and use it in GitHub Desktop.
DataSet > DataTables part 2
// Where we'll put the data
var newDataSet = [];
// Our column headers
// Change these to fit your table
var tableColumnSet = [
{ "sTitle": "Employee" },
{ "sTitle": "Department" },
{ "sTitle": "Total FY12 Salary", "sType": "currency" },
{ "sTitle": "Gender", "sClass": "center" },
{ "sTitle": "County", "sClass": "center" },
{ "sTitle": "Position", "sClass": "center" }
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment