{hero}

searchBuilder.liveSearch

Since: SearchBuilder 1.6.0

Control live search operation.
Please note - this property requires the SearchBuilder extension for DataTables.

Description

This option is an alias to searchBuilder.liveSearch, which should be preferred when using DataTables 2+. It can be used to configure SearchBuilder regardless of how the panes are inserted into the document (layout or searchBuilder).

Please refer to the documentation for searchBuilder.liveSearch for full details of this option.

Type

boolean

Description:

Enable live search on SearchBuilder input (true), or disable and show a "Search" button to trigger the search operation (false).

Example

Disable live search:

new DataTable('#myTable', {
	layout: {
		top1: 'searchBuilder'
	},
	searchBuilder: {
		liveSearch: false
	}
});