(cell)
| 2403 | } |
| 2404 | |
| 2405 | function _fnColumnsFromHeader(cell) { |
| 2406 | var attr = $(cell).closest("[data-dt-column]").attr("data-dt-column") |
| 2407 | |
| 2408 | if (!attr) { |
| 2409 | return [] |
| 2410 | } |
| 2411 | |
| 2412 | return attr.split(",").map(function (val) { |
| 2413 | return val * 1 |
| 2414 | }) |
| 2415 | } |
| 2416 | /** |
| 2417 | * Add a data array to the table, creating DOM node etc. This is the parallel to |
| 2418 | * _fnGatherData, but for adding rows from a Javascript source, rather than a |
no test coverage detected