mirror of
https://github.com/DataTables/DataTables.git
synced 2025-01-18 11:52:11 +01:00
8e583a51b3
- For consistency and completeness, the cell() and cells() methods now accept their own cell selector option (rather than just rows and columns) which is a jQuery selector, or no selector at all for all cells. Additionally it allows an options object to be passed in, to allow configuraiton of the order of data etc. - The cells() method now has these calling options: - cells() - all cells - cells( opts ) - option configuration - cells( selector ) - cell selector - cells( selector, opts ) - cell selector + options - cells( rowSelector, columnSelector ) - row + column selector - cells( rowSelector, columnSelector, opts ) - row + column selector + opttions - The cell() method as the same signature.