{hero}

searchPanes.hideCount

Since: SearchPanes 1.0.0

Hide the count column in all panes.
Please note - this property requires the SearchPanes extension for DataTables.

Deprecated!

As of v this feature has been deprecated. This feature has not yet been scheduled for removal, but its use is discouraged and the alternatives discussed below should be used.

Description

This option is an alias to searchPanes.hideCount, which should be preferred when using DataTables 2+. It can be used to configure SearchPanes regardless of how the panes are inserted into the document (layout or searchPanes).

Please refer to the documentation for searchPanes.hideCount for full details of this option.

Type

boolean

Description:

By setting the searchPanes.hideCount option to true the count column will be hidden in all of the panes.

Default

  • Value: false

The default value for the searchPanes.hideCount parameter is false, meaning that as standard the count column will be included in the panes.

Example

Hide count for all panes:

new DataTable('#myTable', {
	layout: {
		top1: 'searchPanes'
	},
	searchPanes: {
		hideCount: true
	}
});

Related

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