{hero}

language.searchBuilder.rightTitle

Since: SearchBuilder 1.0.0

Set the title attribute of the SearchBuilder right button.
Please note - this property requires the SearchBuilder extension for DataTables.

Description

As standard, SearchBuilder will set the right button's title to 'Indent criteria'. This title is displayed when the mouse hovers over the right button.

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

Type

string | object

Description:

language.searchBuilder.rightTitle changes the title of the SearchBuilder right button.

Default

  • Value: Indent criteria

Example

Change title attribute for SearchBuilder right button:

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

Related

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