{hero}

language.searchBuilder.right

Since: SearchBuilder 1.0.0

Set the text 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 text to '>'.

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

Type

string | object

Description:

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

Default

  • Value: >

Example

Change the SearchBuilder right button's text:

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

Related

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