{hero}

cells().deselect()

Since: Select 1.0.0

Deselect cells.
Please note - this property requires the Select extension for DataTables.

Description

This method simply deselects the cells that have been found by the cells() selector method.

Type

cells().deselect()

Deselect one or more cells in the table, based on the cells found by the cells() method.

Returns:

DataTables.Api API instance that contains a reference to the deselected cells.

Example

Deselect all cells which have a class of 'important':

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

table.cells('.important').deselect();

Related

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