{hero}

language.searchBuilder.valueJoiner

Since: SearchBuilder 1.0.0

Set the text between the value input elements where two are required.
Please note - this property requires the SearchBuilder extension for DataTables.

Description

This will set the text between the two value input elements, by default this is 'and'. This language option is available in custom conditions and plugins also.

Type

string | object

Description:

language.searchBuilder.valueJoiner changes what will be displayed between the two input elements, when a two part condition is selected (like between).

Default

  • Value: and

Example

Change text for SearchBuilder Value:

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