{hero}

language.searchBuilder.logicAnd

Since: SearchBuilder 1.0.0

Message to display when AND logic is in place.
Please note - this property requires the SearchBuilder extension for DataTables.

Description

As standard, SearchBuilder will set the logic button to display 'And' when AND logic is in place.

Type

string | object

Description:

language.searchBuilder.logicAnd changes what will be displayed in the text of the SearchBuilder logic button when AND logic is set.

Default

  • Value: And

Example

Change message for SearchBuilder logic button under AND conditions:

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

Related

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