{hero}

language.aria.orderable

Since: DataTables 2.0

Language string used for WAI-ARIA column orderable label.

Description

ARIA label that is added to the table headers when the column may be 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 sort

Example

Set ARIA orderable string:

new DataTable('#myTable', {
	language: {
		aria: {
			orderable: ': Sort this column'
		}
	}
});

Related

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