language.aria.orderableReverse
Since: DataTables 2.0
Language string used for WAI-ARIA column label to alter column's ordering.
Description
ARIA label that is added to the table headers when the column is already ordered and may be reverse sorted by activating the column (click or return when focused).
The string given here is prefixed with the column name when DataTables constructs the aria-label
attribute.
Type
This option can be given in the following type(s):
Default
- Value:
: Activate to invert sorting
Example
Set ARIA orderableReverse string:
new DataTable('#myTable', {
language: {
aria: {
orderableReverse: ': Reverse sort this column'
}
}
});
Related
The following options are directly related and may also be useful in your application development.