{hero}

language.searchBuilder.leftTitle

Since: SearchBuilder 1.0.0

Set the title attribute 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 title to 'Outdent criteria'. This title is displayed when the mouse hovers over the left button.

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

Type

string | object

Description:

language.searchBuilder.leftTitle changes the title of the SearchBuilder left button.

Default

  • Value: Outdent criteria

Example

Change title attribute for SearchBuilder left button:

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

Related

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