row().cache()
Get the DataTables cached data for the selected row.
Description
DataTables caches data for searching and ordering in order for those operations to run as quickly as possible when they are required.
Cached data is not guaranteed to be available at any particular moment. If DataTables hasn't requested the data, it won't have been cached. This is particularly obvious when using the order
option and a sort hasn't been performed on a column. Invalidation of data will also cause the cache to be removed.
It should be noted that this method is required as DataTables has the ability to use different data for its different operations (searching, ordering, display etc) - see columns.data
and columns.render
for further information. If you don't want the cached data, rows().data()
provides access to the original data array / object given to, or created by DataTables. If you aren't using orthogonal data for the different operations of DataTables, then this method is of limited used.
Note that this method is primarily aimed at plug-in developers who require access to the internal data that DataTables has stored.
Type
function row().cache( [ type ] )
- Description:
Obtain the data for the row from the selector
- Parameters:
Name Type Optional 1 type
Yes - default:order Specify which cache the data should be read from. Can take one of two values:
search
ororder
. Defaults toorder
if no value is given.- Returns:
DataTables API instance with data for each cell in the selected row in the result set. This is a 1D array with each entry being the data for the cells from the selected row.
Related
The following options are directly related and may also be useful in your application development.