{hero}

searchPanes.container()

Since: SearchPanes 1.0.0

Returns the node of the panes container.
Please note - this property requires the SearchPanes extension for DataTables.

Description

This method provides the ability to return the node of the container that is storing all of the SearchPanes.

As it is a getter it does not take any arguments

Type

function searchPanes.container()

Description:

Returns the node of the panes container.

Returns:

jQuery instance that contains the container element for the searchPanes.

Example

Add a class to the searchPanes container::

var dt = new DataTable('#myTable', {
	layout: {
		top1: 'searchPanes'
	}
});

dt.searchPanes.container().addClass('sp_class');