* Apply column sizes * * @param {*} settings DataTables settings object
(settings)
| 2018 | * @param {*} settings DataTables settings object |
| 2019 | */ |
| 2020 | function _fnColumnSizes(settings) { |
| 2021 | var cols = settings.aoColumns |
| 2022 | |
| 2023 | for (var i = 0; i < cols.length; i++) { |
| 2024 | var width = _fnColumnsSumWidth(settings, [i], false, false) |
| 2025 | |
| 2026 | cols[i].colEl.css("width", width) |
| 2027 | } |
| 2028 | } |
| 2029 | |
| 2030 | /** |
| 2031 | * Convert the index of a visible column to the index in the data array (take account |
no test coverage detected