{hero}

language.searchBuilder.left

Since: SearchBuilder 1.0.0

Set the text of the SearchBuilder left button.
Please note - this property requires the SearchBuilder extension for DataTables.

Description

As standard, SearchBuilder will set the left button's text to '<'.

The value of language.searchBuilder.left is passed into an i18n() function.

Type

string | object

Description:

language.searchBuilder.left changes the text of the SearchBuilder left button.

Default

  • Value: <

Example

Change the SearchBuilder left button's text:

new DataTable('#myTable', {
	language: {
		searchBuilder: {
			left: 'Left'
		}
	},
	layout: {
		top1: 'searchBuilder'
	}
});

Related

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