Created
March 11, 2013 23:32
-
-
Save csessig86/5138915 to your computer and use it in GitHub Desktop.
DataSet > DataTables part 2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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