{hero}

columns().nodes()

Since: DataTables 1.10

Get the cell nodes for the selected columns.

Description

This method is used to get the nodes of for the cells (th / td elements) in the columns matched by the selector.

Please note that the order of the nodes in the returned array and which rows the nodes are obtained from (searched rows, visible rows etc) is controlled by the selector-modifier option of the columns() selector used to get the selected columns.

Furthermore, please be aware that using deferRender will cause some nodes to be created only when they are required for display, so they might not be immediately available when this method is called.

Type

function columns().nodes()

Description:

Obtain the th / td nodes for the selected columns

Returns:

DataTables API instance with each cell's node from the selected columns in the result set. This is a 2D array with the top level array entries for each column matched by the columns() selector.

Example

Add a class to all cells in the columns matched by a class:

var table = new DataTable('#myTable');

table
	.columns('.ready')
	.nodes()
	.flatten() // Reduce to a 1D array
	.to$() // Convert to a jQuery object
	.addClass('highlight');

Related

The following options are directly related and may also be useful in your application development.