{hero}

language.paginate.last

Since: DataTables 1.10

Pagination 'last' button string.

Description

Text used when the pagination control shows the button to take the user to the last page.

Note that DataTables writes this property to the document as HTML, so you can use HTML tags in the language string, but HTML entities such as < and > should be encoded as &lt; and &gt; respectively.

    Please note that the default value of this parameter was changed in DataTables 2. It is now `»`, while in DataTables 1.x it was `Last`.

Type

This option can be given in the following type(s):

Default

  • Value: »

Example

Set text for pagination 'last' button:

new DataTable('#myTable', {
	language: {
		paginate: {
			last: 'Last page'
		}
	}
});

Related

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