searchPanes.orderable
Hide the ordering buttons in all panes.
Please note - this property requires the SearchPanes extension for DataTables.
Description
As standard, SearchPanes will be displayed with the ordering buttons included in the interface, allowing the user to change the order of the selections in each pane. However if the value of searchPanes.orderable
is set to false
then the ordering buttons will no longer be displayed in any of the panes.
The ordering buttons can be hidden for individual panes by the columns.searchPanes.orderable
option.
Type
boolean
- Description:
By setting the
searchPanes.orderable
option tofalse
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: {
orderable: false
}
}
}
});
Related
The following options are directly related and may also be useful in your application development.