{hero}

language.searchBuilder.condition

Since: SearchBuilder 1.0.0

Set the placeholder text for the SearchBuilder condition select element.
Please note - this property requires the SearchBuilder extension for DataTables.

Description

This will set the placeholder text for the condition select element, by default this is 'Condition'. This dom element is available in custom conditions and plugins also.

Type

string | object

Description:

language.searchBuilder.condition changes what will be displayed for the SearchBuilder's condition select.

Default

  • Value: Condition

Example

Change message for SearchBuilder Condition:

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

Related

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