* Convert the index of a visible column to the index in the data array (take account * of hidden columns) * @param {object} oSettings dataTables settings object * @param {int} iMatch Visible column index to lookup * @returns {int} i the data index * @memberof DataTable#oApi
(oSettings, iMatch)
| 2036 | * @memberof DataTable#oApi |
| 2037 | */ |
| 2038 | function _fnVisibleToColumnIndex(oSettings, iMatch) { |
| 2039 | var aiVis = _fnGetColumns(oSettings, "bVisible") |
| 2040 | |
| 2041 | return typeof aiVis[iMatch] === "number" ? aiVis[iMatch] : null |
| 2042 | } |
| 2043 | |
| 2044 | /** |
| 2045 | * Convert the index of an index in the data array and convert it to the visible |
no test coverage detected