{hero}

searchPanes.orderable

Since: SearchPanes 1.0.0

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

Description

This option is an alias to searchPanes.orderable, 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.orderable for full details of this option.

Type

boolean

Description:

By setting the searchPanes.orderable option to false the ordering buttons will be hidden in all of the panes.

Default

  • Value: true

The default value for the searchPanes.orderable parameter is true, meaning that as standard the ordering buttons will be included in the panes.

Example

Hide ordering buttons for all panes:

new DataTable('#myTable', {
	layout: {
		top1: 'searchPanes'
	},
	searchPanes: {
		orderable: false
	}
});

Related

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