|
Lines 262-267
Link Here
|
| 262 |
expandExpand(row); |
262 |
expandExpand(row); |
| 263 |
}); |
263 |
}); |
| 264 |
|
264 |
|
|
|
265 |
//Not all types have all core columns, mark them 'N/A' if not applied |
| 266 |
//Otherwise we get errors on table load |
| 267 |
dataCopy.forEach(function(thisRow){ |
| 268 |
core.forEach(function(thisCore){ |
| 269 |
if ( typeof thisRow[thisCore] == 'undefined' ){ |
| 270 |
thisRow[thisCore] = 'N/A'; |
| 271 |
} |
| 272 |
}); |
| 273 |
}); |
| 274 |
|
| 265 |
// Assemble an array of column definitions for passing |
275 |
// Assemble an array of column definitions for passing |
| 266 |
// to datatables |
276 |
// to datatables |
| 267 |
var colData = []; |
277 |
var colData = []; |
| 268 |
- |
|
|